diff options
Diffstat (limited to 'src/test/ui/parser/fn-header-syntactic-pass.rs')
| -rw-r--r-- | src/test/ui/parser/fn-header-syntactic-pass.rs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/test/ui/parser/fn-header-syntactic-pass.rs b/src/test/ui/parser/fn-header-syntactic-pass.rs index 0557b9ef6ca..9e44541993d 100644 --- a/src/test/ui/parser/fn-header-syntactic-pass.rs +++ b/src/test/ui/parser/fn-header-syntactic-pass.rs @@ -3,9 +3,6 @@ // check-pass // edition:2018 -#![feature(const_extern_fn)] -//^ FIXME(Centril): move check to ast_validation. - fn main() {} #[cfg(FALSE)] @@ -14,8 +11,7 @@ fn syntax() { unsafe fn f(); const fn f(); extern "C" fn f(); - const /* async */ unsafe extern "C" fn f(); - //^ FIXME(Centril): `async` should be legal syntactically. + const async unsafe extern "C" fn f(); trait X { async fn f(); |
