leo/tests/parser/functions/const_public_param_fail.leo

12 lines
161 B
Plaintext
Raw Normal View History

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