leo/tests/old/pass/circuits/member_function_fail.leo
2021-04-12 13:15:39 -07:00

10 lines
149 B
Plaintext

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