leo/tests/parser/functions/public_param.leo
2022-04-13 22:20:48 +02:00

13 lines
147 B
Plaintext

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