leo/compiler/tests/circuits/self_no_member_fail.leo

10 lines
143 B
Plaintext
Raw Normal View History

circuit Foo {
function bar() -> u32 {
return self.f
}
}
function main() -> u32 {
2020-07-17 06:47:47 +03:00
let foo = Foo { };
return foo.bar()
}