leo/tests/compiler/circuits/self_member.leo

21 lines
279 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
*/
circuit Foo {
f: u32;
2020-12-01 23:37:44 +03:00
function bar(self) -> u32 {
return self.f;
}
}
2021-05-12 20:47:03 +03:00
function main(y: bool) -> bool {
const a = Foo { f: 1u32 };
const b = a.bar();
2020-07-30 21:11:54 +03:00
2021-05-12 20:47:03 +03:00
return b == 1u32 == y;
}