summaryrefslogtreecommitdiffstats
path: root/src/test/ui/error-codes/E0271.stderr
blob: 9c9c7237d71459a4ad74b88d71374954c3100ec0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error[E0271]: type mismatch resolving `<i8 as Trait>::AssociatedType == u32`
  --> $DIR/E0271.rs:10:5
   |
LL |     foo(3_i8);
   |     ^^^ type mismatch resolving `<i8 as Trait>::AssociatedType == u32`
   |
note: expected this to be `u32`
  --> $DIR/E0271.rs:7:43
   |
LL | impl Trait for i8 { type AssociatedType = &'static str; }
   |                                           ^^^^^^^^^^^^
note: required by a bound in `foo`
  --> $DIR/E0271.rs:3:32
   |
LL | fn foo<T>(t: T) where T: Trait<AssociatedType=u32> {
   |                                ^^^^^^^^^^^^^^^^^^ required by this bound in `foo`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0271`.