leo/tests/compiler/function/newlines.leo
2021-05-05 18:29:44 +03:00

16 lines
163 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file: input/integers.in
*/
function main(
a: u32,
b: u32,
) -> (
u32,
u32,
) {
return (a, b);
}