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