summaryrefslogtreecommitdiff
path: root/test/files/pos/t8617.scala
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2014-05-24 20:42:27 +0200
committerJason Zaugg <jzaugg@gmail.com>2014-05-24 20:42:27 +0200
commitbdf9195993caa3eee4f3be49428566323eaf4afd (patch)
treea11c4fe9634e3bf919d467267439a6da15225f1a /test/files/pos/t8617.scala
parente948b39ca4df48b2acb0e972a2caf674c643a990 (diff)
downloadscala-bdf9195993caa3eee4f3be49428566323eaf4afd.tar.gz
scala-bdf9195993caa3eee4f3be49428566323eaf4afd.tar.bz2
scala-bdf9195993caa3eee4f3be49428566323eaf4afd.zip
SI-8617 Avoid rangepos crash for OptManifest materializer
The tree to create a `NoManifest` was unpositioned.
Diffstat (limited to 'test/files/pos/t8617.scala')
-rw-r--r--test/files/pos/t8617.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/files/pos/t8617.scala b/test/files/pos/t8617.scala
new file mode 100644
index 0000000000..fc825bbcba
--- /dev/null
+++ b/test/files/pos/t8617.scala
@@ -0,0 +1,10 @@
+object Test {
+ def foo[A] = implicitly[OptManifest[A]] // was "unpositioned tree" under -Yrangepos
+
+ // These did not crash, but testing for good measure.
+ implicitly[OptManifest[String]]
+ implicitly[Manifest[String]]
+
+ implicitly[reflect.ClassTag[String]]
+ implicitly[reflect.runtime.universe.TypeTag[String]]
+}