leo/disabled_tests/compiler/circuits/member_static_function_nested.leo

24 lines
282 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file: input/dummy.in
*/
circuit Foo {
function qux() {}
function bar() {
Self::qux();
}
function baz() {
Self::bar();
}
}
function main(y: bool) -> bool {
Foo::baz();
return y == true;
}