leo/asg/tests/pass/circuits/member_static_function_nested.leo
2021-01-25 07:19:38 -08:00

15 lines
172 B
Plaintext

circuit Foo {
function qux() {}
function bar() {
Self::qux();
}
function baz() {
Self::bar();
}
}
function main() {
Foo::baz();
}