leo/compiler/tests/circuits/self_member_invalid.leo

12 lines
163 B
Plaintext
Raw Normal View History

circuit Foo {
f: u32,
function bar() -> u32 {
return f
}
}
function main() -> u32 {
2020-07-17 06:47:47 +03:00
let foo = Foo { f: 1u32 };
2020-07-30 21:11:54 +03:00
let err = foo.bar();
}