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