summaryrefslogtreecommitdiff
path: root/test/files/run/bug1373.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/bug1373.scala')
-rw-r--r--test/files/run/bug1373.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/run/bug1373.scala b/test/files/run/bug1373.scala
index 537421c788..d6f9c1ee1c 100644
--- a/test/files/run/bug1373.scala
+++ b/test/files/run/bug1373.scala
@@ -1,6 +1,6 @@
// Testing whether case class params come back in the right order.
-object Test extends Application {
+object Test extends App {
case class Foo(private val a: String, b: String, private val c: String, d: String, private val e: String)
val x = Foo("a", "b", "c", "d", "e")
assert(x.toString == """Foo(a,b,c,d,e)""")
-} \ No newline at end of file
+}