]> git.lizzy.rs Git - rust.git/blob - src/test/ui/auto-traits/typeck-default-trait-impl-precedence.stderr
Rollup merge of #93663 - sunfishcode:sunfishcode/as-raw-name, r=joshtriplett
[rust.git] / src / test / ui / auto-traits / typeck-default-trait-impl-precedence.stderr
1 error[E0277]: the trait bound `u32: Signed` is not satisfied
2   --> $DIR/typeck-default-trait-impl-precedence.rs:19:5
3    |
4 LL |     is_defaulted::<&'static u32>();
5    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Signed` is not implemented for `u32`
6    |
7    = help: the following implementations were found:
8              <i32 as Signed>
9 note: required because of the requirements on the impl of `Defaulted` for `&'static u32`
10   --> $DIR/typeck-default-trait-impl-precedence.rs:10:19
11    |
12 LL | impl<'a,T:Signed> Defaulted for &'a T { }
13    |                   ^^^^^^^^^     ^^^^^
14 note: required by a bound in `is_defaulted`
15   --> $DIR/typeck-default-trait-impl-precedence.rs:12:19
16    |
17 LL | fn is_defaulted<T:Defaulted>() { }
18    |                   ^^^^^^^^^ required by this bound in `is_defaulted`
19
20 error: aborting due to previous error
21
22 For more information about this error, try `rustc --explain E0277`.