Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
rust
/
compile
/
issue-2650-2.rs
blob: 55d2a82b19cc339865317a7a9a74c751eec13768 [
file
]
// { dg-additional-options "-frust-edition=2015" }
#![
feature
(
no_core
)]
#![
no_core
]
pub
async
fn
a
()
->
u32
{
// { dg-error "'async fn' is not permitted in Rust 2015" }
1
}