leo/tests/compiler/circuits/member_variable.leo

16 lines
198 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-07-17 22:59:18 +03:00
x: u32,
}
2021-05-12 20:47:03 +03:00
function main(y: bool) -> bool {
const a = Foo { x: 1u32 };
2021-07-01 23:40:29 +03:00
return (a.x == 1u32) == y;
2021-05-05 11:37:51 +03:00
}