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