mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-19 07:32:26 +03:00
19 lines
205 B
Plaintext
19 lines
205 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Fail
|
|
*/
|
|
|
|
circuit Foo {
|
|
a: u8;
|
|
|
|
function set_a(self, new: u8) {
|
|
self.a = new;
|
|
}
|
|
}
|
|
|
|
function main() {
|
|
let f = Foo { a: 0u8 };
|
|
|
|
f.set_a(1u8);
|
|
}
|