leo/asg/tests/fail/circuits/mut_self_variable_fail.leo

13 lines
160 B
Plaintext
Raw Normal View History

2021-01-25 18:17:42 +03:00
circuit Foo {
a: u8;
2021-01-25 18:17:42 +03:00
function set_a(self, new: u8) {
self.a = new;
}
}
function main() {
let f = Foo { a: 0u8 };
2021-01-25 18:17:42 +03:00
f.set_a(1u8);
}