leo/compiler/tests/circuits/member_static_function.leo

9 lines
135 B
Plaintext
Raw Normal View History

2020-07-17 06:47:47 +03:00
circuit Foo {
2020-07-17 22:59:18 +03:00
static function echo(x: u32) -> u32 {
return x
}
2020-05-20 07:59:00 +03:00
}
function main() -> u32 {
2020-07-17 22:59:18 +03:00
return Foo::echo(1u32)
2020-05-20 07:59:00 +03:00
}