leo/tests/old/pass/circuits/member_static_function_nested.leo
2021-04-12 13:15:39 -07:00

15 lines
172 B
Plaintext

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