summaryrefslogtreecommitdiff
path: root/test/files/run/t5225_2.scala
diff options
context:
space:
mode:
authorSimon Ochsenreither <simon@ochsenreither.de>2013-01-17 19:55:42 +0100
committerSimon Ochsenreither <simon@ochsenreither.de>2013-01-17 20:52:24 +0100
commit167fc0acb9bc75f3f378d2bfbabd61a2782a3568 (patch)
tree0e8a6abbda1a632269544fd61d3f828d28a65f1d /test/files/run/t5225_2.scala
parent4805b97b62b00b39fee55ee9855ae8c046f5d621 (diff)
downloadscala-167fc0acb9bc75f3f378d2bfbabd61a2782a3568.tar.gz
scala-167fc0acb9bc75f3f378d2bfbabd61a2782a3568.tar.bz2
scala-167fc0acb9bc75f3f378d2bfbabd61a2782a3568.zip
SI-6811 Remove usages of scala.annotation.cloneable
The source file itself will be removed later, because the compiler seems to need it for boot-strapping.
Diffstat (limited to 'test/files/run/t5225_2.scala')
-rw-r--r--test/files/run/t5225_2.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t5225_2.scala b/test/files/run/t5225_2.scala
index d1b607499c..cf0f23a5c8 100644
--- a/test/files/run/t5225_2.scala
+++ b/test/files/run/t5225_2.scala
@@ -1,6 +1,6 @@
import scala.reflect.runtime.universe._
object Test extends App {
- val tree = reify{def foo(@cloneable x: Int) = ""}.tree
+ val tree = reify{def foo(@annotation.elidable(0) x: Int) = ""}.tree
println(tree.toString)
} \ No newline at end of file