1
Fork 0
rust/src/test/ui/async-await/no-unsafe-async.stderr

15 lines
438 B
Text
Raw Normal View History

2019-10-22 11:46:19 -07:00
error: expected one of `extern` or `fn`, found keyword `async`
--> $DIR/no-unsafe-async.rs:7:12
|
LL | unsafe async fn g() {}
| ^^^^^ expected one of `extern` or `fn` here
2019-10-22 11:46:19 -07:00
error: expected one of `extern`, `fn`, or `{`, found keyword `async`
--> $DIR/no-unsafe-async.rs:11:8
|
LL | unsafe async fn f() {}
| ^^^^^ expected one of `extern`, `fn`, or `{` here
error: aborting due to 2 previous errors