blob: 04c7d244376e508ad79dd5dc51578fa5a68a0220 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
error[E0271]: type mismatch resolving `<i8 as Trait>::AssociatedType == u32`
--> $DIR/E0271.rs:20:5
|
LL | foo(3_i8); //~ ERROR E0271
| ^^^ expected reference, found u32
|
= note: expected type `&'static str`
found type `u32`
note: required by `foo`
--> $DIR/E0271.rs:13:1
|
LL | fn foo<T>(t: T) where T: Trait<AssociatedType=u32> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to previous error
For more information about this error, try `rustc --explain E0271`.
|