12 lines
113 B
Text
12 lines
113 B
Text
struct Foo {
|
|
field a;
|
|
}
|
|
|
|
struct Bar {
|
|
Foo foo;
|
|
}
|
|
|
|
def main(Bar b) {
|
|
field a = b.foo.a;
|
|
return;
|
|
}
|