leo/tests/parser/functions/const_param.leo
2022-03-28 10:35:36 -07:00

12 lines
144 B
Plaintext

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