blob: f5be5d156e0d96dc383273397bf679f0b502a5b8 [file] [edit]
error: general type equality constraints are not supported
--> $DIR/equality-predicates-0.rs:14:5
|
LL | T::Item = u8
| ^^^^^^^^^^^^ not supported
|
= note: see issue #20041 <https://github.com/rust-lang/rust/issues/20041> for more information
help: replace it with an associated item constraint if possible
|
LL - T::Item = u8
LL + T: /* Trait */</* ... */Item = u8>
|
error: aborting due to 1 previous error