leo/tests/compiler/circuits/member_variable_and_function.leo

24 lines
310 B
Plaintext
Raw Normal View History

2021-05-05 11:37:51 +03:00
/*
namespace: Compile
expectation: Pass
inputs:
- member.in: |
[registers]
r0: bool = false;
*/
2020-06-20 11:40:56 +03:00
circuit Foo {
foo: u32;
2020-06-20 11:40:56 +03:00
2020-12-01 23:37:44 +03:00
function bar() -> u32 {
return 1u32;
2020-06-20 11:40:56 +03:00
}
}
2021-05-05 11:37:51 +03:00
function main() -> bool {
const a = Foo { foo: 1 };
const b = a.foo + Foo::bar();
2020-07-30 21:11:54 +03:00
2021-05-05 11:37:51 +03:00
return b == 2u32;
2020-06-20 11:40:56 +03:00
}