Skip to content

Commit

Permalink
0.19 upgrade: Add test case for nested Basics.flip
Browse files Browse the repository at this point in the history
  • Loading branch information
avh4 committed Apr 14, 2018
1 parent 6c2dc03 commit 8d16959
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test-files/transform/Elm-0.19/RemoveBasicsFlip.elm
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ unapplied = flip
extraArgs f = flip f 1 2 3 4 5

qualified f = Basics.flip f "2" 1

nested f = flip f (flip f 1 2) 3
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,7 @@ extraArgs f =

qualified f =
f 1 "2"


nested f =
f 3 (f 2 1)

0 comments on commit 8d16959

Please sign in to comment.