summaryrefslogtreecommitdiff
path: root/test/files/pos/bug430.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/bug430.scala')
-rw-r--r--test/files/pos/bug430.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/bug430.scala b/test/files/pos/bug430.scala
index 1f7d86b1c8..e04e39bea8 100644
--- a/test/files/pos/bug430.scala
+++ b/test/files/pos/bug430.scala
@@ -1,4 +1,4 @@
-object Test extends Application {
+object Test extends App {
def foo[T <% Ordered[T]](x: T){ Console.println(""+(x < x)+" "+(x <= x)) }
def bar(x: Unit ): Unit = foo(x);
def bar(x: Boolean): Unit = foo(x);