rust/tests/ui/parser/removed-syntax-closure-lifetime.stderr

14 lines
406 B
Plaintext
Raw Normal View History

2020-11-21 08:44:06 -06:00
error: expected one of `!`, `(`, `+`, `,`, `::`, `:`, `<`, `=`, or `>`, found `/`
--> $DIR/removed-syntax-closure-lifetime.rs:1:22
2018-10-20 15:36:17 -05:00
|
LL | type closure = Box<lt/fn()>;
2020-11-21 08:44:06 -06:00
| ^ expected one of 9 possible tokens
|
help: you might have meant to end the type parameters here
|
LL | type closure = Box<lt>/fn()>;
| +
2018-10-20 15:36:17 -05:00
error: aborting due to previous error