Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
ergonomic-clones
/
async
/
edition-2015.rs
blob: 78831249429025780bd63a36dc27aee7d60c5a70 [
file
] [
log
] [
blame
]
//@ edition:2015
#![
feature
(
ergonomic_clones
)]
#![
allow
(
incomplete_features
)]
fn
main
()
{
async
use
{};
//~^ ERROR `async use` blocks are only allowed in Rust 2018 or later
}