leo/compiler/tests/circuits/member_function.leo
2020-08-16 17:20:47 -07:00

11 lines
158 B
Plaintext

circuit Foo {
function echo(x: u32) -> u32 {
return x
}
}
function main() {
let a = Foo { };
console.assert(a.echo(1u32) == 1u32);
}