1
0
Fork 0
mirror of synced 2025-09-23 12:18:44 +00:00
ZoKrates/zokrates_cli/examples/structs/nested_access.zok
2022-06-01 00:04:40 +02:00

12 lines
113 B
Text

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