leo/tests/parser/functions/public_const_param.leo
2022-04-05 09:36:22 -07:00

12 lines
158 B
Plaintext

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