leo/compiler/tests/circuits/member_function_invalid.leo

10 lines
204 B
Plaintext
Raw Normal View History

2020-07-17 06:47:47 +03:00
circuit Foo {
2020-12-01 19:54:51 +03:00
function echo(x: u32) -> u32 {
2020-07-17 22:59:18 +03:00
return x
}
}
2020-07-30 21:11:54 +03:00
function main() {
let a = Foo { };
let err = a.echo(1u32); // echo is a static function and must be accessed using `::`
}