7 lines
89 B
Text
7 lines
89 B
Text
|
|
struct A { int x }
|
||
|
|
struct B { int x ; int y }
|
||
|
|
|
||
|
|
void foo(A? a, B b) {
|
||
|
|
b = a;
|
||
|
|
return;
|
||
|
|
}
|