aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t6675.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t6675.scala')
-rw-r--r--tests/untried/pos/t6675.scala20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/untried/pos/t6675.scala b/tests/untried/pos/t6675.scala
new file mode 100644
index 000000000..f3bebea5b
--- /dev/null
+++ b/tests/untried/pos/t6675.scala
@@ -0,0 +1,20 @@
+object LeftOrRight {
+ def unapply[A](value: Either[A, A]): Option[A] = value match {
+ case scala.Left(x) => Some(x)
+ case scala.Right(x) => Some(x)
+ }
+}
+
+object Test {
+ (Left((0, 0)): Either[(Int, Int), (Int, Int)]) match {
+ case LeftOrRight(pair @ (a, b)) => a // false -Xlint warning: "extractor pattern binds a single value to a Product2 of type (Int, Int)"
+ }
+
+ (Left((0, 0)): Either[(Int, Int), (Int, Int)]) match {
+ case LeftOrRight((a, b)) => a // false -Xlint warning: "extractor pattern binds a single value to a Product2 of type (Int, Int)"
+ }
+
+ (Left((0, 0)): Either[(Int, Int), (Int, Int)]) match {
+ case LeftOrRight(a, b) => a // false -Xlint warning: "extractor pattern binds a single value to a Product2 of type (Int, Int)"
+ }
+}