leo/asg/tests/fail/circuits/member_static_function_undefined.leo
2021-01-25 07:19:38 -08:00

9 lines
127 B
Plaintext

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