leo/tests/pass/parse/circuits/mut_self_variable_fail.leo

13 lines
160 B
Plaintext
Raw Normal View History

2021-03-03 20:59:24 +03:00
circuit Foo {
a: u8,
function set_a(self, new: u8) {
self.a = new;
}
}
function main() {
let f = Foo { a: 0u8 };
2021-03-03 20:59:24 +03:00
f.set_a(1u8);
}