blob: 30b73f59e8c01de65b66642fecb4b2f0279f187d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
error: unexpected colon after `where`
--> $DIR/recover-enum-with-bad-where.rs:2:6
|
LL | where:
| ^ help: remove the colon
error[E0405]: cannot find trait `Missing` in this scope
--> $DIR/recover-enum-with-bad-where.rs:4:8
|
LL | T: Missing, {}
| ^^^^^^^ not found in this scope
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0405`.
|