summaryrefslogtreecommitdiff
path: root/test/files/run/t2594_tcpoly.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t2594_tcpoly.scala')
-rw-r--r--test/files/run/t2594_tcpoly.scala5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/files/run/t2594_tcpoly.scala b/test/files/run/t2594_tcpoly.scala
index e759ca8b0f..a9d26693f9 100644
--- a/test/files/run/t2594_tcpoly.scala
+++ b/test/files/run/t2594_tcpoly.scala
@@ -1,3 +1,6 @@
+
+import scala.language.{ higherKinds }
+
trait Monad[M[_]] {
def foo[A](a: M[A]): M[A]
}
@@ -15,4 +18,4 @@ object Test {
}
def main(as: Array[String]) { BarMonad[Int] foo (new Bar[Int, Int]) }
-} \ No newline at end of file
+}