rust/tests/ui/parser/removed-syntax-closure-lifetime.stderr
2023-01-11 09:32:08 +00:00

14 lines
406 B
Plaintext

error: expected one of `!`, `(`, `+`, `,`, `::`, `:`, `<`, `=`, or `>`, found `/`
--> $DIR/removed-syntax-closure-lifetime.rs:1:22
|
LL | type closure = Box<lt/fn()>;
| ^ expected one of 9 possible tokens
|
help: you might have meant to end the type parameters here
|
LL | type closure = Box<lt>/fn()>;
| +
error: aborting due to previous error