leo/compiler/tests/circuits/member_variable_and_function.leo
2020-12-01 15:37:44 -05:00

16 lines
199 B
Plaintext

circuit Foo {
foo: u32,
function bar() -> u32 {
return 1u32
}
}
function main() {
let a = Foo { foo: 1 };
let b = a.foo + Foo::bar();
console.assert(b == 2u32);
}