leo/tests/old/pass/circuits/mut_variable_fail.leo

9 lines
94 B
Plaintext
Raw Normal View History

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