leo/compiler/tests/circuits/member_function.leo

10 lines
134 B
Plaintext
Raw Normal View History

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