leo/asg/tests/fail/circuits/mut_variable_fail.leo

9 lines
94 B
Plaintext
Raw Normal View History

2021-01-25 18:17:42 +03:00
circuit Foo {
a: u8;
2021-01-25 18:17:42 +03:00
}
function main() {
const f = Foo { a: 0u8 };
2021-01-25 18:17:42 +03:00
f.a = 1u8;
}