leo/asg/tests/pass/circuits/member_static_function_nested.leo

15 lines
172 B
Plaintext
Raw Normal View History

2021-01-25 18:17:42 +03:00
circuit Foo {
function qux() {}
function bar() {
Self::qux();
}
function baz() {
Self::bar();
}
}
function main() {
Foo::baz();
}