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

15 lines
428 B
Plaintext
Raw Normal View History

2019-10-22 13:46:19 -05: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`
2019-10-22 13:46:19 -05: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 `{`
error: aborting due to 2 previous errors