leo/tests/compiler/circuits/member_variable_and_function.leo
2021-05-12 20:47:03 +03:00

21 lines
285 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file: input/dummy.in
*/
circuit Foo {
foo: u32;
function bar() -> u32 {
return 1u32;
}
}
function main(y: bool) -> bool {
const a = Foo { foo: 1 };
const b = a.foo + Foo::bar();
return b == 2u32 == y;
}