leo/compiler/tests/circuits/mut_self_variable_fail.leo

13 lines
158 B
Plaintext

circuit Foo {
a: u8,
function set_a(new: u8) {
self.a = new;
}
}
function main() {
let mut f = Foo { a: 0u8 };
f.set_a(1u8);
}