-
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.
Add upper bounds to Tuple.{Map,FlatMap} args
Fixes #12645
- Loading branch information
1 parent
1d5a2c4
commit 28a695e
Showing
2 changed files
with
14 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,11 @@ | ||
case class TBox[A <: Tuple](v: A) | ||
case class IBox[A <: Int](v: A) | ||
|
||
@main def m = | ||
val t: TBox[EmptyTuple] = TBox(EmptyTuple) | ||
val tt: Tuple.Map[(EmptyTuple, EmptyTuple), TBox] = (TBox(EmptyTuple), TBox(EmptyTuple)) | ||
|
||
val tt2: Tuple.Map[(1, 2), IBox] = (IBox(1), IBox(2)) | ||
|
||
type F[X] = (X, X) | ||
val tt3: Tuple.FlatMap[(1, 2), F] = (1, 1, 2, 2) |