leo/tests/parser/circuits/field_and_functions.leo
2021-04-12 13:15:39 -07:00

15 lines
160 B
Plaintext

/*
ns: Parse
expectation: Pass
*/
circuit X {
x: u32,
y: u32,
function x() {
return ();
}
function y() {
return ();
}
}