leo/disabled_tests/compiler/circuits/member_variable_fail.leo

14 lines
145 B
Plaintext

/*
namespace: Compile
expectation: Fail
*/
circuit Foo {
x: u32;
}
function main() {
const a = Foo { x: 1u32 };
const err = a.y;
}