summaryrefslogtreecommitdiff
path: root/test/files/pos/tcpoly_method.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/tcpoly_method.scala')
-rw-r--r--test/files/pos/tcpoly_method.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/tcpoly_method.scala b/test/files/pos/tcpoly_method.scala
index 294b53b915..80dc0482fd 100644
--- a/test/files/pos/tcpoly_method.scala
+++ b/test/files/pos/tcpoly_method.scala
@@ -1,6 +1,6 @@
trait Iterable[m[+x], +t] {
def flatMap[resColl[+x] <: Iterable[resColl, x], s](f: t => resColl[s]): resColl[s]
-
+
def foo[a[x]] = "a"
val x = foo[List]
}