You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
= help: consider creating a new trait with all of these as supertraits and using that trait here instead: `trait NewTrait: Add<Rhs> + Sub<Rhs> + Fine<Rhs> {}`
43
43
= note: auto-traits like `Send` and `Sync` are traits that have special properties; for more information on them, visit <https://doc.rust-lang.org/reference/special-types-and-traits.html#auto-traits>
44
44
45
-
error[E0191]: the value of the associated types `Output` in `Div`, `Output` in `Mul` must be specified
45
+
error[E0191]: the value of the associated types `Output` in `Div<Rhs>`, `Output` in `Mul<Rhs>` must be specified
46
46
--> $DIR/missing-associated-types.rs:20:21
47
47
|
48
48
LL | type Bal<Rhs> = dyn X<Rhs>;
49
-
| ^^^^^^ associated types `Output` (from trait `Div`), `Output` (from trait `Mul`) must be specified
49
+
| ^^^^^^ associated types `Output` (from trait `Div<Rhs>`), `Output` (from trait `Mul<Rhs>`) must be specified
50
50
|
51
51
= help: consider introducing a new type parameter, adding `where` constraints using the fully-qualified path to the associated types
0 commit comments