leo/compiler/tests/circuits/member_static_function_nested.leo

15 lines
193 B
Plaintext
Raw Normal View History

2020-09-08 07:56:39 +03:00
circuit Foo {
static function qux() {}
static function bar() {
Self::qux();
}
static function baz() {
Self::bar();
}
}
function main() {
Foo::baz();
}