summaryrefslogtreecommitdiff
path: root/test/files/pos
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-01-05 12:27:47 -0800
committerPaul Phillips <paulp@improving.org>2012-01-05 14:18:39 -0800
commitbf05808e4e9d9aaaa3f08673ce8fc2e521861764 (patch)
tree5e8834d0a63d0b05637e2999ec83a77939fa35eb /test/files/pos
parentdce3fa63db2f0b7e0907eadce08381244220c376 (diff)
downloadscala-bf05808e4e9d9aaaa3f08673ce8fc2e521861764.tar.gz
scala-bf05808e4e9d9aaaa3f08673ce8fc2e521861764.tar.bz2
scala-bf05808e4e9d9aaaa3f08673ce8fc2e521861764.zip
Optimization in refchecks.
Making the inherited java vararg check cheaper.
Diffstat (limited to 'test/files/pos')
-rwxr-xr-xtest/files/pos/t1459/App.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/t1459/App.scala b/test/files/pos/t1459/App.scala
index 651b285b17..36e5022e94 100755
--- a/test/files/pos/t1459/App.scala
+++ b/test/files/pos/t1459/App.scala
@@ -1,7 +1,7 @@
package foo
import base._
-object App extends Application {
+object App extends scala.App {
class Concrete extends AbstractBase {
override def doStuff(params:java.lang.String*): Unit = println("doStuff invoked")
}