leo/compiler/tests/circuits/member_function_nested.leo

19 lines
299 B
Plaintext
Raw Normal View History

circuit Foo {
x: u32,
2020-12-01 19:54:51 +03:00
function add_x(self, y: u32) -> u32 {
return self.x + y
}
2020-12-01 19:54:51 +03:00
function call_add_x(self, y: u32) -> u32 {
return self.add_x(y)
}
}
2020-07-30 21:11:54 +03:00
function main() {
const a = Foo { x: 1u32 };
const b = a.add_x(1u32);
2020-08-17 03:20:47 +03:00
console.assert(b == 2u32);
}