blob: 1798e3e751923a57246c7e4c076c45f8853ea424 [file] [log] [blame]
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() {
}