leo/tests/compiler/circuits/mut_static_function_fail.leo
2021-05-05 11:37:51 +03:00

15 lines
149 B
Plaintext

/*
namespace: Compile
expectation: Fail
*/
circuit Foo {
function bar() {}
}
function main() {
let f = Foo { a: 0u8 };
f.bar = 1u8;
}