summaryrefslogtreecommitdiff
path: root/test/files/run/t6113.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t6113.scala')
-rw-r--r--test/files/run/t6113.scala6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/files/run/t6113.scala b/test/files/run/t6113.scala
new file mode 100644
index 0000000000..321cae86a3
--- /dev/null
+++ b/test/files/run/t6113.scala
@@ -0,0 +1,6 @@
+trait Foo[C[_]]
+
+object Test extends App {
+ import scala.reflect.runtime.universe._
+ println(typeOf[Foo[({type l[X] = (Int, X)})#l]])
+} \ No newline at end of file