leo/tests/compiler/mutability/circuit_variable_mut.leo

16 lines
211 B
Plaintext
Raw Normal View History

2021-05-03 17:28:53 +03:00
/*
namespace: Compile
expectation: Pass
*/
2020-09-03 04:01:47 +03:00
circuit Foo {
2020-12-01 19:54:51 +03:00
x: u32
2020-09-03 04:01:47 +03:00
}
2021-05-03 17:28:53 +03:00
// Using let makes a circuit variable mutable.
2020-09-03 04:01:47 +03:00
function main() {
let a = Foo { x: 1 };
2020-09-03 04:01:47 +03:00
a.x = 0;
console.assert(a.x == 0u32);
}