leo/tests/old/pass/circuits/self_member_undefined.leo
2021-04-12 13:15:39 -07:00

10 lines
144 B
Plaintext

circuit Foo {
function bar() -> u32 {
return self.f
}
}
function main() {
const foo = Foo { };
const err = foo.bar();
}