leo/tests/parser/circuits/functions.leo
2022-01-28 10:34:02 -08:00

17 lines
194 B
Plaintext

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