leo/tests/pass/parse/circuits/self_member.leo

14 lines
191 B
Plaintext
Raw Normal View History

2021-03-03 20:59:24 +03:00
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);
}