10 lines
130 B
Rust
10 lines
130 B
Rust
|
// edition:2018
|
||
|
#![feature(async_await)]
|
||
|
|
||
|
fn main() {
|
||
|
}
|
||
|
|
||
|
async fn response(data: Vec<u8>) {
|
||
|
data.reverse(); //~ ERROR E0596
|
||
|
}
|