Skip to content

Commit

Permalink
fix compile error in test
Browse files Browse the repository at this point in the history
  • Loading branch information
leventeBajczi committed Nov 14, 2024
1 parent 615d2ee commit b13c139
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,12 @@ class PassTests {
PassTestData(
global = { "x" type Int() init "0" },
passes =
listOf(NormalizePass(), DeterministicPass(), RemoveDeadEnds(), UnusedLocRemovalPass()),
listOf(
NormalizePass(),
DeterministicPass(),
RemoveDeadEnds(parseContext),
UnusedLocRemovalPass(),
),
input = {
(init to "L1") { assume("1 == 1") }
(init to "L2") { assume("1 == 1") }
Expand Down

0 comments on commit b13c139

Please sign in to comment.