leo/disabled_tests/compiler/function/newlines.leo

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);
}