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