2025-06-26 18:08:15 +00:00
|
|
|
error: unexpected colon after `where`
|
2025-06-26 17:53:39 +00:00
|
|
|
--> $DIR/recover-enum-with-bad-where.rs:2:6
|
|
|
|
|
|
|
|
|
|
|
LL | where:
|
2025-06-26 18:08:15 +00:00
|
|
|
| ^ help: remove the colon
|
2025-06-26 17:53:39 +00:00
|
|
|
|
2025-06-26 18:08:15 +00:00
|
|
|
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
|
2025-06-26 17:53:39 +00:00
|
|
|
|
2025-06-26 18:08:15 +00:00
|
|
|
For more information about this error, try `rustc --explain E0405`.
|