1
0
Fork 0
mirror of synced 2025-09-24 04:40:05 +00:00
ZoKrates/zokrates_cli/examples/structs/nested_access.zok
2021-05-04 15:47:01 +02:00

11 lines
No EOL
93 B
Text

struct Foo {
field a
}
struct Bar {
Foo foo
}
def main(Bar b):
field a = b.foo.a
return