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, 6 insertions, 0 deletions
diff --git a/tests/pending/pos/t5729.scala b/tests/pending/pos/t5729.scala
new file mode 100644
index 000000000..944aa04d8
--- /dev/null
+++ b/tests/pending/pos/t5729.scala
@@ -0,0 +1,6 @@
+trait T[X]
+object Test {
+ def join(in: Seq[T[_]]): Int = ???
+ def join[S](in: Seq[T[S]]): String = ???
+ join(null: Seq[T[_]])
+}