leo/tests/compiler/circuits/mut_variable_fail.leo

15 lines
138 B
Plaintext
Raw Normal View History

2021-05-05 11:37:51 +03:00
/*
namespace: Compile
expectation: Fail
*/
circuit Foo {
a: u8;
}
function main() {
const f = Foo { a: 0u8 };
f.a = 1u8;
2021-05-05 11:37:51 +03:00
}