leo/disabled_tests/compiler/circuits/inline_fail.leo

14 lines
150 B
Plaintext

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