summaryrefslogtreecommitdiffstats
path: root/src/test/ui/async-await/issues/issue-61187.rs
blob: 8585a42511104aa67b15e2c8dada687012e45cb0 (plain)
1
2
3
4
5
6
7
// edition:2018

fn main() {}

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