2020-05-19 22:41:21 +03:00
|
|
|
// Circuits are immutable by default.
|
2020-07-17 06:47:47 +03:00
|
|
|
circuit Foo {
|
2020-07-17 22:59:18 +03:00
|
|
|
x: u32
|
2020-05-19 22:41:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
function main() {
|
2020-07-17 22:59:18 +03:00
|
|
|
let a = Foo { x: 1 };
|
|
|
|
a.x = 0;
|
2020-05-19 22:41:21 +03:00
|
|
|
}
|