leo/tests/parser/functions/public_const_param_fail.leo

12 lines
161 B
Plaintext
Raw Normal View History

2022-04-05 19:36:22 +03:00
/*
namespace: Parse
2022-04-06 20:23:20 +03:00
expectation: Fail
2022-04-05 19:36:22 +03:00
*/
function x(x: u32, public const y: i32) {
return 0;
}
function x(public constant x: u32, y: i32) {
2022-04-05 19:36:22 +03:00
return 0;
}