Skip to content

Commit

Permalink
Update hygiene.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
odow authored Sep 20, 2023
1 parent 10925bd commit f12e063
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/hygiene.jl
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ x = NewSymbolMA.@rewrite sum(i for i in 1:10 if isodd(i))
x = @_rewrite sum(i for i in 1:10 if isodd(i))
@test x == 25

x = NewSymbolMA.@rewrite sum(i * j for i in 1:4 for j 1:4 if i == j)
x = NewSymbolMA.@rewrite sum(i * j for i in 1:4 for j in 1:4 if i == j)
@test x == 30
x = @_rewrite sum(i * j for i in 1:4 for j 1:4 if i == j)
x = @_rewrite sum(i * j for i in 1:4 for j in 1:4 if i == j)
@test x == 30

x = big(1)
Expand Down

0 comments on commit f12e063

Please sign in to comment.