leo/tests/parser/functions/public_param.leo

13 lines
163 B
Plaintext
Raw Normal View History

2022-04-05 19:36:22 +03:00
/*
namespace: Parse
expectation: Pass
*/
function x(x: u32, public y: i32) -> u8 {
return 0u8;
2022-04-05 19:36:22 +03:00
}
function x(public x: u32, y: i32) -> u8 {
return 0u8;
2022-04-13 22:02:26 +03:00
}