diff options
Diffstat (limited to 'tests/ui/async-await/no-unsafe-async.rs')
| -rw-r--r-- | tests/ui/async-await/no-unsafe-async.rs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/ui/async-await/no-unsafe-async.rs b/tests/ui/async-await/no-unsafe-async.rs new file mode 100644 index 00000000000..f40154e16f3 --- /dev/null +++ b/tests/ui/async-await/no-unsafe-async.rs @@ -0,0 +1,11 @@ +// 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` |
