leo/compiler/tests/circuits/self_member.leo

14 lines
187 B
Plaintext
Raw Normal View History

circuit Foo {
f: u32,
function bar() -> u32 {
return self.f
}
}
2020-07-30 21:11:54 +03:00
function main() {
let a = Foo { f: 1u32 };
let b = a.bar();
2020-08-17 03:20:47 +03:00
console.assert(b == 1u32);
}