summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/removed-syntax-closure-lifetime.stderr
blob: e107c6b78b3136a8d9650fa3ec34a34d1ba4caea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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