summaryrefslogtreecommitdiff
path: root/test/files/run/infix.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/infix.scala')
-rw-r--r--test/files/run/infix.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/infix.scala b/test/files/run/infix.scala
index 60a844acad..ba77480297 100644
--- a/test/files/run/infix.scala
+++ b/test/files/run/infix.scala
@@ -2,7 +2,7 @@ case class op(x: op, y: Int, z: Int) {
def op(y: Int, z: Int) = new op(this, y, z)
}
-object Test extends Application {
+object Test extends App {
val xs = new op(null, 0, 0) op (1, 1) op (2, 2)
Console.println(xs)
xs match {