2023-10-04 01:10:51 +00:00
|
|
|
error[E0191]: the value of the associated type `Output` in `Add` must be specified
|
2022-08-07 21:03:28 +02:00
|
|
|
--> $DIR/issue-21950.rs:10:25
|
|
|
|
|
|
|
|
|
|
|
LL | type Output;
|
|
|
|
|
| ----------- `Output` defined here
|
|
|
|
|
...
|
|
|
|
|
LL | let x = &10 as &dyn Add;
|
|
|
|
|
| ^^^ help: specify the associated type: `Add<Output = Type>`
|
|
|
|
|
|
2024-11-30 02:47:40 +00:00
|
|
|
error: aborting due to 1 previous error
|
2017-12-10 22:47:55 +03:00
|
|
|
|
2024-11-30 02:47:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0191`.
|