1struct A {
2  a : i32;
3};
4
5struct B {
6  b : i32;
7};
8
9fn f(a : A) -> B {
10  return B();
11}
12