leo/tests/compiler/circuits/mut_self_function_fail.leo

15 lines
188 B
Plaintext
Raw Normal View History

circuit Foo {
a: u8,
function bar() {}
2020-12-01 23:37:44 +03:00
function set_a(mut self, new: u8) {
self.bar = new;
}
}
function main() {
let f = Foo { a: 0u8 };
f.set_a(1u8);
}