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

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 };
}