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

12 lines
146 B
Plaintext

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