leo/compiler/tests/circuits/member_function_fail.leo

10 lines
136 B
Plaintext
Raw Normal View History

2020-07-17 06:47:47 +03:00
circuit Foo {
function echo(x: u32) -> u32 {
return x
}
}
function main() -> u32 {
2020-07-17 06:47:47 +03:00
let c = Foo { };
return c.echoed(1u32)
}