leo/tests/compiler/mutability/circuit_fail.leo
2021-05-12 20:02:03 +03:00

14 lines
164 B
Plaintext

/*
namespace: Compile
expectation: Fail
*/
circuit Foo {
x: u32;
}
// const variable is immutable
function main() {
const a = Foo { x: 1 };
a.x = 0;
}