leo/tests/compiler/circuits/mut_variable.leo

23 lines
251 B
Plaintext
Raw Normal View History

2021-05-05 11:37:51 +03:00
/*
namespace: Compile
expectation: Pass
*/
circuit Foo {
2020-12-01 23:37:44 +03:00
a: u8,
}
function main() {
let f = Foo { a: 0u8 };
console.assert(f.a == 0u8);
f.a = 1u8;
console.assert(f.a == 1u8);
f.a = 2u8;
console.assert(f.a == 2u8);
2021-05-05 11:37:51 +03:00
}