about summary refs log tree commit diff
path: root/src/test/ui/async-await/no-unsafe-async.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/async-await/no-unsafe-async.rs')
-rw-r--r--src/test/ui/async-await/no-unsafe-async.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/test/ui/async-await/no-unsafe-async.rs b/src/test/ui/async-await/no-unsafe-async.rs
deleted file mode 100644
index f40154e16f3..00000000000
--- a/src/test/ui/async-await/no-unsafe-async.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-// edition:2018
-
-struct S;
-
-impl S {
-    #[cfg(FALSE)]
-    unsafe async fn g() {} //~ ERROR expected one of `extern` or `fn`, found keyword `async`
-}
-
-#[cfg(FALSE)]
-unsafe async fn f() {} //~ ERROR expected one of `extern` or `fn`, found keyword `async`