summaryrefslogtreecommitdiff
path: root/test/files/neg/t6083.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2013-01-14 23:29:50 -0800
committerPaul Phillips <paulp@improving.org>2013-01-26 11:19:36 -0800
commit76bb23df5e2909871f4f6ba3184abe99f9ba667a (patch)
treeb7c97de44a03071dd448dae332d1473cb8b32c80 /test/files/neg/t6083.scala
parent801eab55019c433d2fa6a925d02e41b1c47cbf22 (diff)
downloadscala-76bb23df5e2909871f4f6ba3184abe99f9ba667a.tar.gz
scala-76bb23df5e2909871f4f6ba3184abe99f9ba667a.tar.bz2
scala-76bb23df5e2909871f4f6ba3184abe99f9ba667a.zip
SI-6083, misleading annotation error message.
When an implicit conversion causes an apparently constant argument not to be constant, show the conversion, not the constant.
Diffstat (limited to 'test/files/neg/t6083.scala')
-rw-r--r--test/files/neg/t6083.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/files/neg/t6083.scala b/test/files/neg/t6083.scala
new file mode 100644
index 0000000000..1de18e6527
--- /dev/null
+++ b/test/files/neg/t6083.scala
@@ -0,0 +1,7 @@
+object conv {
+ implicit def i2s(i: Int): String = ""
+}
+import conv._
+
+class annot(value: String) extends annotation.ClassfileAnnotation
+@annot(101) class C