leo/tests/compiler/circuits/mut_self_variable_conditional.leo
2021-05-12 20:47:03 +03:00

24 lines
359 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file: input/dummy.in
*/
function main(y: bool) -> bool {
let f = Foo { a: 0u32 };
f.bar();
return y == true;
}
circuit Foo {
a: u32;
function bar(mut self) {
if true {
self.a = 5u32; // Mutating a variable inside a conditional statement should work.
}
}
}