leo/tests/parser/circuits/fields_fail.leo

16 lines
143 B
Plaintext
Raw Normal View History

/*
namespace: Parse
expectation: Fail
*/
circuit X {
x: u32
y: u32
}
circuit X {
x: u32,
y: u32;
2022-01-28 21:34:02 +03:00
, // recovery witness
}