2024-01-07 17:11:48 +00:00
|
|
|
error[E0562]: `impl Trait` is not allowed in the type of variable bindings
|
2021-07-22 19:16:33 +01:00
|
|
|
--> $DIR/issue-54600.rs:4:19
|
|
|
|
|
|
|
|
|
LL | let x: Option<impl Debug> = Some(44_u32);
|
|
|
|
| ^^^^^^^^^^
|
2024-01-07 17:11:48 +00:00
|
|
|
|
|
|
|
|
= note: `impl Trait` is only allowed in arguments and return types of functions and methods
|
2021-07-22 19:16:33 +01:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2021-07-22 19:16:33 +01:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0562`.
|