leo/tests/parser/functions/const_param.leo

14 lines
220 B
Plaintext
Raw Normal View History

2021-03-30 01:45:10 +03:00
/*
2021-04-07 20:01:24 +03:00
namespace: Parse
2021-03-30 01:45:10 +03:00
expectation: Pass
*/
2022-10-06 02:54:50 +03:00
program test.aleo {
function x(x: u32, constant y: i32) -> u8 {
return 0u8;
}
function x(constant x: u32, y: i32) -> u8 {
return 0u8;
}}