Sign in
android
/
toolchain
/
rustc
/
5c0824a599f2f1f4dcb9c92edf09f6c1b555988d
/
.
/
tests
/
ui
/
async-await
/
dont-print-desugared-async.rs
blob: 68341a24c4e5d396e3bc52ffb84c3e4ca733831e [
file
] [
log
] [
blame
]
// Test that we don't show variables with from async fn desugaring
// edition:2018
async
fn
async_fn
(&
ref
mut
s
:
&[
i32
])
{}
//~^ ERROR cannot borrow data in a `&` reference as mutable [E0596]
fn
main
()
{}