leo/tests/compiler/function/9_inputs_fail.leo
2022-10-05 16:53:49 -07:00

22 lines
378 B
Plaintext

/*
namespace: Compile
expectation: Fail
input_file: inputs/nine.in
*/
program test.aleo {
// The maximum number of arguments to a function is 8.
function main(
a: u8,
b: u8,
c: u8,
d: u8,
e: u8,
f: u8,
g: u8,
h: u8,
i: u8,
) -> u8 {
return a + b + c + d + e + f + g + h + i
}}