leo/tests/compiler/circuits/self_member_invalid.leo

17 lines
212 B
Plaintext
Raw Normal View History

2021-05-05 11:37:51 +03:00
/*
namespace: Compile
expectation: Fail
*/
circuit Foo {
f: u32;
function bar() -> u32 {
return f;
}
}
function main() -> u32 {
const foo = Foo { f: 1u32 };
const err = foo.bar();
}