aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t5082.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t5082.scala')
-rw-r--r--tests/pending/pos/t5082.scala14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/pending/pos/t5082.scala b/tests/pending/pos/t5082.scala
deleted file mode 100644
index 63eeda38b..000000000
--- a/tests/pending/pos/t5082.scala
+++ /dev/null
@@ -1,14 +0,0 @@
-trait Something[T]
-object Test { class A }
-case class Test() extends Something[Test.A]
-
-object User {
- val Test() = Test()
-}
-
-object Wrap {
- trait Something[T]
- object Test { class A }
- case class Test(a: Int, b: Int)(c: String) extends Something[Test.A]
- val Test(x, y) = Test(1, 2)(""); (x + y).toString
-}