summaryrefslogtreecommitdiff
path: root/test/files/run/t1524.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2009-11-18 05:41:16 +0000
committerPaul Phillips <paulp@improving.org>2009-11-18 05:41:16 +0000
commit7bad13f1799234ef8ebdde07f304319d4fd035d2 (patch)
tree46eb278d56028a0018bc514f6f3e44c2dd4422e0 /test/files/run/t1524.scala
parent6a23aa029bb78aa6f769b3daab71bb8330af5f3f (diff)
downloadscala-7bad13f1799234ef8ebdde07f304319d4fd035d2.tar.gz
scala-7bad13f1799234ef8ebdde07f304319d4fd035d2.tar.bz2
scala-7bad13f1799234ef8ebdde07f304319d4fd035d2.zip
More deprecation work.
since 2.7.2 (still except for lower case primitive type aliases) and removes every deprecated method which has never shipped in a release.
Diffstat (limited to 'test/files/run/t1524.scala')
-rw-r--r--test/files/run/t1524.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t1524.scala b/test/files/run/t1524.scala
index ecd90adec7..4f6c65d052 100644
--- a/test/files/run/t1524.scala
+++ b/test/files/run/t1524.scala
@@ -3,5 +3,5 @@ object Test extends Application {
val buf = new scala.collection.mutable.ArrayBuffer[String] { override val initialSize = 0 }
buf += "initial"
buf += "second"
- println(buf.first)
+ println(buf.head)
}