mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 19:58:18 +00:00
17 lines
561 B
Text
Generated
17 lines
561 B
Text
Generated
procedure Bool.12 (#Attr.2, #Attr.3):
|
|
let Bool.24 : Int1 = lowlevel NotEq #Attr.2 #Attr.3;
|
|
ret Bool.24;
|
|
|
|
procedure Bool.7 (Bool.19, Bool.20):
|
|
let Bool.23 : Int1 = CallByName Bool.12 Bool.19 Bool.20;
|
|
ret Bool.23;
|
|
|
|
procedure Test.6 ():
|
|
let Test.10 : Int1 = false;
|
|
let Test.0 : [C Int1, C Int1, C Int1] = TagId(2) Test.10;
|
|
let Test.9 : Int1 = false;
|
|
let Test.1 : [C Int1, C Int1, C Int1] = TagId(0) Test.9;
|
|
let Test.8 : Int1 = CallByName Bool.7 Test.0 Test.1;
|
|
expect Test.8;
|
|
let Test.7 : {} = Struct {};
|
|
ret Test.7;
|