leo/tests/compiler/circuits/member_static_function.leo

18 lines
241 B
Plaintext
Raw Normal View History

2021-05-05 11:37:51 +03:00
/*
namespace: Compile
expectation: Pass
2021-05-12 20:47:03 +03:00
input_file: input/dummy.in
2021-05-05 11:37:51 +03:00
*/
2020-07-17 06:47:47 +03:00
circuit Foo {
2020-12-01 23:37:44 +03:00
function echo(x: u32) -> u32 {
return x;
2020-07-17 22:59:18 +03:00
}
2020-05-20 07:59:00 +03:00
}
2021-05-12 20:47:03 +03:00
function main(y: bool) -> bool {
const a = Foo::echo(1u32);
2020-07-30 21:11:54 +03:00
2021-05-12 20:47:03 +03:00
return a == 1u32 == y;
2021-05-05 11:37:51 +03:00
}