leo/tests/compiler/circuits/inline_fail.leo
2022-06-22 22:38:33 -10:00

14 lines
155 B
Plaintext

/*
namespace: Compile
expectation: Fail
*/
circuit Foo {
x: u32;
}
function main() {
// no member y in Foo
const a: Foo = Foo { y: 0u32 };
}