summaryrefslogtreecommitdiff
path: root/test/files/neg/t3006.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/t3006.scala')
-rwxr-xr-xtest/files/neg/t3006.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/neg/t3006.scala b/test/files/neg/t3006.scala
index f476c1717d..a84b69c842 100755
--- a/test/files/neg/t3006.scala
+++ b/test/files/neg/t3006.scala
@@ -1,4 +1,4 @@
-object Test extends Application {
+object Test extends App {
case class A(x: Int);
class Foo(a: A) { println("Foo created!"); def +(x: Int) = new A(this.a.x + x); }