leo/tests/compiler/mutability/circuit_function_mut.leo

9 lines
161 B
Plaintext
Raw Normal View History

2020-09-03 04:01:47 +03:00
// Adding the `mut` keyword makes a circuit variable mutable.
circuit Foo {
function bar() {}
}
function main() {
let a = Foo { x: 1 };
2020-09-03 04:01:47 +03:00
a.bar = 0;
}