leo/tests/compiler/circuits/mut_static_function_fail.leo

15 lines
149 B
Plaintext
Raw Normal View History

2021-05-05 11:37:51 +03:00
/*
namespace: Compile
expectation: Fail
*/
circuit Foo {
2020-12-01 23:37:44 +03:00
function bar() {}
}
function main() {
let f = Foo { a: 0u8 };
f.bar = 1u8;
2021-05-05 11:37:51 +03:00
}