mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-13 07:16:18 +00:00

Makes sure that we turn on `debug-symbols` in mono tests, and that this feature is fully respected in symbol generation, so that output in release + debug builds are the same. Closes #4435
19 lines
649 B
Text
19 lines
649 B
Text
procedure List.4 (List.105, List.106):
|
|
let List.412 : U64 = 1i64;
|
|
let List.410 : List I64 = CallByName List.70 List.105 List.412;
|
|
let List.409 : List I64 = CallByName List.71 List.410 List.106;
|
|
ret List.409;
|
|
|
|
procedure List.70 (#Attr.2, #Attr.3):
|
|
let List.413 : List I64 = lowlevel ListReserve #Attr.2 #Attr.3;
|
|
ret List.413;
|
|
|
|
procedure List.71 (#Attr.2, #Attr.3):
|
|
let List.411 : List I64 = lowlevel ListAppendUnsafe #Attr.2 #Attr.3;
|
|
ret List.411;
|
|
|
|
procedure Test.0 ():
|
|
let Test.2 : List I64 = Array [1i64];
|
|
let Test.3 : I64 = 2i64;
|
|
let Test.1 : List I64 = CallByName List.4 Test.2 Test.3;
|
|
ret Test.1;
|