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

9 lines
105 B
Plaintext

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