Skip to content

Commit

Permalink
Make singleton_inference validator test not use a LC
Browse files Browse the repository at this point in the history
Still triggers the same type conflict bug.
  • Loading branch information
richcarl committed Jan 31, 2025
1 parent f3d0d0f commit 179d097
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,8 @@

test() ->
{'EXIT',{{badmatch,true}, _}} =
catch [0 || (X = (true or (X = is_port(node()))))],
catch case X = (true or (X = is_port(node()))) of
true -> 1;
false -> 0
end,
ok.

0 comments on commit 179d097

Please sign in to comment.