7 lines
72 B
Text
7 lines
72 B
Text
|
|
struct A { int x }
|
||
|
|
struct B { int x ; int y }
|
||
|
|
|
||
|
|
A f(B b) {
|
||
|
|
return b;
|
||
|
|
}
|