summaryrefslogtreecommitdiff
path: root/test/files/pos/classtag-pos.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-10-02 11:21:16 -0700
committerPaul Phillips <paulp@improving.org>2012-10-04 16:01:47 -0700
commit120e14fadf30b4c39f953832108d19b736dc6f2d (patch)
treef912a4b14f275de00ae02dbe7df4eacbd18de940 /test/files/pos/classtag-pos.scala
parent4715d782d4f4f1f36c11d26023f970a25f2a8c23 (diff)
downloadscala-120e14fadf30b4c39f953832108d19b736dc6f2d.tar.gz
scala-120e14fadf30b4c39f953832108d19b736dc6f2d.tar.bz2
scala-120e14fadf30b4c39f953832108d19b736dc6f2d.zip
Fix for rangepos crasher.
wrapClassTagUnapply was generating an unpositioned tree which would crash under -Yrangepos. See SI-6338.
Diffstat (limited to 'test/files/pos/classtag-pos.scala')
-rw-r--r--test/files/pos/classtag-pos.scala5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/files/pos/classtag-pos.scala b/test/files/pos/classtag-pos.scala
new file mode 100644
index 0000000000..768d2e27f4
--- /dev/null
+++ b/test/files/pos/classtag-pos.scala
@@ -0,0 +1,5 @@
+import scala.reflect.runtime.universe._
+
+class A {
+ def f[T: TypeTag] = typeOf[T] match { case TypeRef(_, _, args) => args }
+}