mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 11:52:19 +00:00
11 lines
268 B
Text
11 lines
268 B
Text
procedure Bool.2 ():
|
|
let Bool.11 : Int1 = true;
|
|
ret Bool.11;
|
|
|
|
procedure Test.0 ():
|
|
let Test.6 : Int1 = CallByName Bool.2;
|
|
if Test.6 then
|
|
Error voided tag constructor is unreachable
|
|
else
|
|
let Test.5 : Str = "abc";
|
|
ret Test.5;
|