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

12 lines
146 B
Plaintext

/*
namespace: Parse
expectation: Pass
*/
function x(x: u32, const y: i32) {
return ();
}
function x(const x: u32, y: i32) {
return ();
}