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

13 lines
143 B
Plaintext

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