leo/compiler/tests/circuits/member_static_function_undefined.leo
2020-12-01 15:37:44 -05:00

9 lines
127 B
Plaintext

circuit Foo {
function echo(x: u32) -> u32 {
return x
}
}
function main() {
let err = Foo::echoed(1u32);
}