leo/tests/pass/parse/circuits/mut_function_fail.leo

11 lines
121 B
Plaintext
Raw Normal View History

2021-03-03 20:59:24 +03:00
circuit Foo {
a: u8,
function bar() {}
}
function main() {
let mut f = Foo { a: 0u8 };
f.bar = 1u8;
}