blob: 8c166807c46ad0f78bd95c57c565f78b53aede5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
error[E0308]: mismatched types
--> $DIR/issue-2951.rs:13:10
|
LL | xx = y;
| ^ expected type parameter, found a different type parameter
|
= note: expected type `T`
found type `U`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.
|