about summary refs log tree commit diff
path: root/tests/ui/async-await/issues/issue-61187.rs
blob: ec972d6b9185a90fe14d27604a2f7f5bd468a8e4 (plain)
1
2
3
4
5
6
7
//@ edition:2018

fn main() {}

async fn response(data: Vec<u8>) {
    data.reverse(); //~ ERROR E0596
}