2024-01-07 11:11:48 -06:00
|
|
|
error[E0562]: `impl Trait` is not allowed in the type of variable bindings
|
2021-07-22 13:16:33 -05:00
|
|
|
--> $DIR/issue-54840.rs:5:13
|
|
|
|
|
|
|
|
|
LL | let j: &impl Add = &i;
|
|
|
|
| ^^^^^^^^
|
2024-01-07 11:11:48 -06:00
|
|
|
|
|
|
|
|
= note: `impl Trait` is only allowed in arguments and return types of functions and methods
|
2021-07-22 13:16:33 -05:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2021-07-22 13:16:33 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0562`.
|