leo/asg/tests/fail/circuits/self_member_invalid.leo

12 lines
168 B
Plaintext
Raw Normal View History

2021-01-25 18:17:42 +03:00
circuit Foo {
f: u32;
2021-01-25 18:17:42 +03:00
function bar() -> u32 {
return f;
2021-01-25 18:17:42 +03:00
}
}
function main() -> u32 {
const foo = Foo { f: 1u32 };
const err = foo.bar();
2021-01-25 18:17:42 +03:00
}