Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
async-await
/
issues
/
issue-61187.rs
blob: ec972d6b9185a90fe14d27604a2f7f5bd468a8e4 [
file
] [
log
] [
blame
]
//@ edition:2018
fn
main
()
{}
async
fn
response
(
data
:
Vec
<
u8
>)
{
data
.
reverse
();
//~ ERROR E0596
}