-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix untupling of functions in for comprehensions
- Loading branch information
1 parent
5c628d9
commit e2b5229
Showing
2 changed files
with
10 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
|
||
object Test: | ||
val z = Seq(0 -> 1, 2 -> 3).lazyZip(Seq("A", "B")) | ||
for case ((beg, end), c) <- z yield c // Ok: a withFilter is inserted before map | ||
for (range, c) <- z yield c // Ok: exact shape | ||
for ((beg, end), c) <- z yield c // Error before changes: Wrong number of parameters, expected 2 |