blob: 68341a24c4e5d396e3bc52ffb84c3e4ca733831e [file] [log] [blame]
Chih-Hung Hsiehda60c852019-12-19 14:56:55 -08001// Test that we don't show variables with from async fn desugaring
2
3// edition:2018
Chih-Hung Hsiehda60c852019-12-19 14:56:55 -08004
5async fn async_fn(&ref mut s: &[i32]) {}
6//~^ ERROR cannot borrow data in a `&` reference as mutable [E0596]
7
8fn main() {}