leo/compiler/tests/circuits/mut_static_function_fail.leo

9 lines
109 B
Plaintext
Raw Normal View History

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