2020-02-09 22:01:23 -06:00
|
|
|
error: `?` may only modify trait bounds, not lifetime bounds
|
|
|
|
--> $DIR/issue-68890.rs:1:11
|
|
|
|
|
|
|
|
|
LL | enum e{A((?'a a+?+l))}
|
|
|
|
| ^
|
|
|
|
|
|
|
|
error: expected one of `)`, `+`, or `,`, found `a`
|
|
|
|
--> $DIR/issue-68890.rs:1:15
|
|
|
|
|
|
|
|
|
LL | enum e{A((?'a a+?+l))}
|
|
|
|
| ^ expected one of `)`, `+`, or `,`
|
|
|
|
|
2020-03-07 05:54:31 -06:00
|
|
|
error: expected item, found `)`
|
|
|
|
--> $DIR/issue-68890.rs:1:21
|
2020-02-09 22:01:23 -06:00
|
|
|
|
|
|
|
|
LL | enum e{A((?'a a+?+l))}
|
2020-03-07 05:54:31 -06:00
|
|
|
| ^ expected item
|
2020-02-09 22:01:23 -06:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|