leo/tests/old/pass/circuits/mut_self_function_fail.leo
2021-04-12 13:15:39 -07:00

15 lines
189 B
Plaintext

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