aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t5729.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t5729.scala')
-rw-r--r--tests/pending/pos/t5729.scala6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/pending/pos/t5729.scala b/tests/pending/pos/t5729.scala
deleted file mode 100644
index 944aa04d8..000000000
--- a/tests/pending/pos/t5729.scala
+++ /dev/null
@@ -1,6 +0,0 @@
-trait T[X]
-object Test {
- def join(in: Seq[T[_]]): Int = ???
- def join[S](in: Seq[T[S]]): String = ???
- join(null: Seq[T[_]])
-}