aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/i0268.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pos/i0268.scala')
-rw-r--r--tests/pos/i0268.scala15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/pos/i0268.scala b/tests/pos/i0268.scala
new file mode 100644
index 000000000..6ac0c5c90
--- /dev/null
+++ b/tests/pos/i0268.scala
@@ -0,0 +1,15 @@
+package typespatmat
+
+sealed trait Box2[T]
+final case class Int2(x: Int) extends Box2[Int]
+final case class Str2(x: String)
+ extends Box2[String]
+final case class Gen[T](x: T) extends Box2[T]
+
+object Box2 {
+ def double2[T](x: Box2[T]): T = x match {
+ case Int2(i) => i * 2
+ case Str2(s) => s + s
+ case Gen(x) => x
+ }
+}