aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t1896
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t1896')
-rw-r--r--tests/untried/pos/t1896/D0.scala11
-rw-r--r--tests/untried/pos/t1896/D1.scala2
2 files changed, 0 insertions, 13 deletions
diff --git a/tests/untried/pos/t1896/D0.scala b/tests/untried/pos/t1896/D0.scala
deleted file mode 100644
index 6b3150d96..000000000
--- a/tests/untried/pos/t1896/D0.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-package p
-
-class X[T]
-
-trait A {
- def m(s:X[_]): Unit = {}
-}
-
-trait B extends A {
- def f: Unit = { super.m(null) }
-}
diff --git a/tests/untried/pos/t1896/D1.scala b/tests/untried/pos/t1896/D1.scala
deleted file mode 100644
index e1ab50679..000000000
--- a/tests/untried/pos/t1896/D1.scala
+++ /dev/null
@@ -1,2 +0,0 @@
-package p
-class C extends B