blob: 494ae8f8d69f39dac8c48390160cdd03a58b7a94 [file] [log] [blame]
struct A {
a : i32,
};
struct B {
b : i32,
};
fn f(a : A) -> B {
return B();
}