mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
14 lines
406 B
Plaintext
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
|
|
|