summaryrefslogtreecommitdiff
path: root/test/files/pos/t1027.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t1027.scala')
-rw-r--r--test/files/pos/t1027.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/t1027.scala b/test/files/pos/t1027.scala
index 7854041f10..02ba9a8a3e 100644
--- a/test/files/pos/t1027.scala
+++ b/test/files/pos/t1027.scala
@@ -1,4 +1,4 @@
-object T1027 extends Application {
+object T1027 extends App {
trait Comparable[T <: Comparable[T]] { this: T =>
def < (that: T): Boolean
def <=(that: T): Boolean = this < that || this == that