summary refs log tree commit diff
path: root/tests/ui/async-await/no-unsafe-async.rs
blob: e58d878c3db040f68c12f2f5fb6824037b640a70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//@ 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`

fn main() {}