leo/tests/parser/functions/const_public_param_fail.leo
2022-10-05 16:54:50 -07:00

14 lines
215 B
Plaintext

/*
namespace: Parse
expectation: Fail
*/
program test.aleo {
function x(x: u32, const public y: i32) {
return 0;
}
function x(constant public x: u32, y: i32) {
return 0;
}}