leo/tests/compiler/function/newlines.leo

16 lines
163 B
Plaintext
Raw Normal View History

2021-05-05 18:29:44 +03:00
/*
namespace: Compile
expectation: Pass
input_file: input/integers.in
*/
function main(
a: u32,
b: u32,
) -> (
u32,
u32,
) {
return (a, b);
2021-05-05 18:29:44 +03:00
}