leo/disabled_tests/compiler/circuits/const_self_variable_fail.leo

19 lines
211 B
Plaintext
Raw Normal View History

2021-05-03 16:47:33 +03:00
/*
namespace: Compile
expectation: Fail
*/
circuit Foo {
a: u8;
function set_a(const self, new: u8) {
self.a = new;
}
}
function main() {
let f = Foo { a: 0u8 };
f.set_a(1u8);
2021-05-05 11:37:51 +03:00
}