leo/tests/pass/parse/circuits/mut_static_function_fail.leo
2021-03-03 09:59:24 -08:00

9 lines
109 B
Plaintext

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