leo/tests/pass/parse/circuits/self_member_undefined.leo
2021-03-03 09:59:24 -08:00

10 lines
140 B
Plaintext

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