leo/tests/parser/functions/public_const_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, public const y: i32) {
return 0;
}
function x(public constant x: u32, y: i32) {
return 0;
}}