mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 11:52:19 +00:00

Addresses the attempt to do so in https://github.com/roc-lang/roc/pull/3465 Co-authored-by: Folkert <folkert@folkertdev.nl>
7 lines
185 B
Text
7 lines
185 B
Text
procedure Test.0 ():
|
|
let Test.7 : Int1 = true;
|
|
if Test.7 then
|
|
Error voided tag constructor is unreachable
|
|
else
|
|
let Test.6 : Str = "abc";
|
|
ret Test.6;
|