summaryrefslogtreecommitdiff
path: root/test/files/run/existential-rangepos.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/existential-rangepos.scala')
-rw-r--r--test/files/run/existential-rangepos.scala13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/files/run/existential-rangepos.scala b/test/files/run/existential-rangepos.scala
new file mode 100644
index 0000000000..7d2b0810d3
--- /dev/null
+++ b/test/files/run/existential-rangepos.scala
@@ -0,0 +1,13 @@
+import scala.tools.partest._
+
+object Test extends DirectTest {
+ override def extraSettings: String = "-usejavacp -Yrangepos -Xprint:patmat -Xprint-pos -d " + testOutput.path
+
+ override def code = """
+abstract class A[T] {
+ val foo: Set[_ <: T] = null
+ val bar: Set[_ <: T]
+}""".trim
+
+ override def show(): Unit = Console.withErr(System.out)(compile())
+}