summaryrefslogtreecommitdiff
path: root/test/files/pos/attributes.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-04-28 11:52:10 -0700
committerPaul Phillips <paulp@improving.org>2012-04-28 13:48:22 -0700
commit14144be0bcd3f6823a9622c6f962aed295ef3392 (patch)
treee031f6fd8c87d7289e9841490c60888b14d558c8 /test/files/pos/attributes.scala
parentd1460afa09989bcecb306b3cf78880cea39cbdc7 (diff)
downloadscala-14144be0bcd3f6823a9622c6f962aed295ef3392.tar.gz
scala-14144be0bcd3f6823a9622c6f962aed295ef3392.tar.bz2
scala-14144be0bcd3f6823a9622c6f962aed295ef3392.zip
Removed a few more @deprecated members.
The ones which remain I'm not removing on purpose, as I know from experience it's more trouble than it's yet worth.
Diffstat (limited to 'test/files/pos/attributes.scala')
-rw-r--r--test/files/pos/attributes.scala14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/files/pos/attributes.scala b/test/files/pos/attributes.scala
index f3bbb4c42e..ec735d0aae 100644
--- a/test/files/pos/attributes.scala
+++ b/test/files/pos/attributes.scala
@@ -52,15 +52,15 @@ object O6 {
}
object myAttrs {
- class a1 extends scala.Annotation;
- class a2(x: Int) extends scala.Annotation;
- class a3(x: a1) extends scala.Annotation;
+ class a1 extends scala.annotation.Annotation;
+ class a2(x: Int) extends scala.annotation.Annotation;
+ class a3(x: a1) extends scala.annotation.Annotation;
}
-class a4(ns: Array[Int]) extends scala.Annotation;
+class a4(ns: Array[Int]) extends scala.annotation.Annotation;
object O7 {
- class a1 extends scala.Annotation;
- class a2(x: Int) extends scala.Annotation;
- class a3(x: a1) extends scala.Annotation;
+ class a1 extends scala.annotation.Annotation;
+ class a2(x: Int) extends scala.annotation.Annotation;
+ class a3(x: a1) extends scala.annotation.Annotation;
final val x = new a1;
@a1 class C1;