blob: cfe350ef86db2a3343260ef5a1a4a3a230aa8461 [file] [log] [blame]
struct Foo {
a: isize,
b: isize,
}
struct Bar {
a: isize,
b: usize,
}
fn want_foo(f: Foo) {}
fn have_bar(b: Bar) {
want_foo(b); //~ ERROR mismatched types
//~| expected `Foo`, found `Bar`
}
fn main() {}