leo/tests/pass/parse/circuits/member_static_function_nested.leo

15 lines
172 B
Plaintext
Raw Normal View History

2021-03-03 20:59:24 +03:00
circuit Foo {
function qux() {}
function bar() {
Self::qux();
}
function baz() {
Self::bar();
}
}
function main() {
Foo::baz();
}