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

14 lines
191 B
Plaintext

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