leo/tests/compiler/circuits/member_variable_and_function.leo
2021-05-05 11:37:51 +03:00

24 lines
310 B
Plaintext

/*
namespace: Compile
expectation: Pass
inputs:
- member.in: |
[registers]
r0: bool = false;
*/
circuit Foo {
foo: u32,
function bar() -> u32 {
return 1u32;
}
}
function main() -> bool {
const a = Foo { foo: 1 };
const b = a.foo + Foo::bar();
return b == 2u32;
}