mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-23 23:23:50 +03:00
21 lines
233 B
Plaintext
21 lines
233 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Fail
|
|
*/
|
|
|
|
circuit Foo {
|
|
a: u8;
|
|
|
|
function bar() {}
|
|
|
|
function set_a(mut self, new: u8) {
|
|
self.bar = new;
|
|
}
|
|
}
|
|
|
|
function main() {
|
|
let f = Foo { a: 0u8 };
|
|
|
|
f.set_a(1u8);
|
|
}
|