summaryrefslogtreecommitdiff
path: root/test/files/jvm/t2163/t2163.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/jvm/t2163/t2163.scala')
-rw-r--r--test/files/jvm/t2163/t2163.scala7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/files/jvm/t2163/t2163.scala b/test/files/jvm/t2163/t2163.scala
index f73b520cbe..fdf19c4e25 100644
--- a/test/files/jvm/t2163/t2163.scala
+++ b/test/files/jvm/t2163/t2163.scala
@@ -1,5 +1,10 @@
+
+import scala.language.{ higherKinds }
+
class T2163Scala[CC[X]](x: CC[Int]) {
def bar[DD[X]](meh: DD[Int]): CC[Int] = x
}
-object Test extends App {}
+object Test extends App {
+ new t2163().test()
+}