mirror of
https://github.com/roc-lang/roc.git
synced 2025-07-19 12:35:07 +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
9 lines
281 B
Text
9 lines
281 B
Text
procedure Num.19 (#Attr.2, #Attr.3):
|
|
let Num.256 : U64 = lowlevel NumAdd #Attr.2 #Attr.3;
|
|
ret Num.256;
|
|
|
|
procedure Test.0 ():
|
|
let Test.2 : U64 = 9999999999999999999i64;
|
|
let Test.3 : U64 = 1i64;
|
|
let Test.1 : U64 = CallByName Num.19 Test.2 Test.3;
|
|
ret Test.1;
|