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

14 lines
220 B
Plaintext

/*
namespace: Parse
expectation: Pass
*/
program test.aleo {
function x(x: u32, constant y: i32) -> u8 {
return 0u8;
}
function x(constant x: u32, y: i32) -> u8 {
return 0u8;
}}