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

13 lines
136 B
Plaintext

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