blob: 1798e3e751923a57246c7e4c076c45f8853ea424 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
fn foo<T, U>(x: T, y: U) {
let mut xx = x;
xx = y;
//~^ ERROR mismatched types
//~| expected type parameter `T`, found type parameter `U`
//~| expected type parameter `T`
//~| found type parameter `U`
}
fn main() {
}
|