blob: 5962d191292889c3a34fd4509c617ca877dc8d99 [file] [log] [blame]
error[E0277]: the trait bound `u32: Signed` is not satisfied
--> $DIR/typeck-default-trait-impl-precedence.rs:19:5
|
LL | fn is_defaulted<T:Defaulted>() { }
| --------- required by this bound in `is_defaulted`
...
LL | is_defaulted::<&'static u32>();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Signed` is not implemented for `u32`
|
= note: required because of the requirements on the impl of `Defaulted` for `&'static u32`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.