leo/tests/parser/functions/const_input_kw_fail.leo

12 lines
131 B
Plaintext

/*
namespace: Parse
expectation: Fail
*/
function x(const input) {
return ();
}
function y(constant input) {
return ();
}