summaryrefslogtreecommitdiff
path: root/test/files/neg/bug1960.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/bug1960.scala')
-rw-r--r--test/files/neg/bug1960.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/neg/bug1960.scala b/test/files/neg/bug1960.scala
index b381e9df23..af7f270356 100644
--- a/test/files/neg/bug1960.scala
+++ b/test/files/neg/bug1960.scala
@@ -1,4 +1,4 @@
-object ClassFormatErrorExample extends Application { new Aclass(1) }
+object ClassFormatErrorExample extends App { new Aclass(1) }
trait TBase { var p:Int = 0; def f(p1: Int) {} }