summaryrefslogtreecommitdiff
path: root/test/files/run
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2013-02-03 13:59:35 +0100
committerEugene Burmako <xeno.by@gmail.com>2013-02-11 19:17:46 +0100
commit0262941b3c5016d84f111bb9956190d333c7acf2 (patch)
treebe7b76deb28fad38586f1905dfd1e33d5a8f231e /test/files/run
parent21d5d3820b285b7c96fb2fadbaec7f5db12ebaa6 (diff)
downloadscala-0262941b3c5016d84f111bb9956190d333c7acf2.tar.gz
scala-0262941b3c5016d84f111bb9956190d333c7acf2.tar.bz2
scala-0262941b3c5016d84f111bb9956190d333c7acf2.zip
removes the crazy extraneous log
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