summaryrefslogtreecommitdiff
path: root/test/files/run
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run')
-rw-r--r--test/files/run/reflection-crazy-logs.check1
-rw-r--r--test/files/run/reflection-crazy-logs.scala5
2 files changed, 6 insertions, 0 deletions
diff --git a/test/files/run/reflection-crazy-logs.check b/test/files/run/reflection-crazy-logs.check
new file mode 100644
index 0000000000..27ba77ddaf
--- /dev/null
+++ b/test/files/run/reflection-crazy-logs.check
@@ -0,0 +1 @@
+true
diff --git a/test/files/run/reflection-crazy-logs.scala b/test/files/run/reflection-crazy-logs.scala
new file mode 100644
index 0000000000..6844faabf6
--- /dev/null
+++ b/test/files/run/reflection-crazy-logs.scala
@@ -0,0 +1,5 @@
+import scala.reflect.runtime.universe._
+
+object Test extends App {
+ println(typeOf[List[Any]] <:< typeOf[List[T] forSome { type T }])
+} \ No newline at end of file