blob: 527515a1b44cc7458cee7684e7c31269259d7d7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
error: expected identifier, found keyword `async`
--> $DIR/method-call-pos.rs:4:11
|
LL | <_ as async Fn()>(|| async {});
| ^^^^^ expected identifier, found keyword
error: expected one of `(`, `::`, `<`, or `>`, found `Fn`
--> $DIR/method-call-pos.rs:4:17
|
LL | <_ as async Fn()>(|| async {});
| ^^ expected one of `(`, `::`, `<`, or `>`
error: aborting due to 2 previous errors
|