leo/tests/pass/parse/circuits/inline_member_fail.leo
2021-03-03 09:59:24 -08:00

8 lines
88 B
Plaintext

circuit Foo {
x: u8
}
function main() {
let y: u8 = 1;
let a = Foo { y };
}