mirror of
https://github.com/roc-lang/roc.git
synced 2025-07-24 06:55:15 +00:00
Add test for when U64 num literal layout should be chosen
This commit is contained in:
parent
e09b5313df
commit
f31f78fde1
1 changed files with 9 additions and 0 deletions
|
@ -0,0 +1,9 @@
|
|||
procedure Num.19 (#Attr.2, #Attr.3):
|
||||
let Num.188 : U64 = lowlevel NumAdd #Attr.2 #Attr.3;
|
||||
ret Num.188;
|
||||
|
||||
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;
|
Loading…
Add table
Add a link
Reference in a new issue