leo/tests/compiler/circuits/member_variable_fail.leo
2021-05-12 20:02:03 +03:00

14 lines
145 B
Plaintext

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