Skip to content

Commit

Permalink
Use explicit truth values for if-skip
Browse files Browse the repository at this point in the history
  • Loading branch information
arr2036 committed Mar 17, 2024
1 parent d525d00 commit 7a70f5d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/tests/keywords/if-skip
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,25 @@
# i.e. we can reference things which don't exist,
# and they'll get ignored.
#
if (0) {
if (false) {
no-such-module
}

if (0) {
if (false) {
no-such-module
}
else {
ok
}

if (1) {
if (true) {
ok
}
else {
no-such-module
}

if (1) {
if (true) {
ok
}
elsif ("%foo(bar)") { # no pass2
Expand Down

0 comments on commit 7a70f5d

Please sign in to comment.