summaryrefslogtreecommitdiff
path: root/test/files/run/bug2075.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/bug2075.scala')
-rw-r--r--test/files/run/bug2075.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/run/bug2075.scala b/test/files/run/bug2075.scala
index f328faddcb..e3a68e4a83 100644
--- a/test/files/run/bug2075.scala
+++ b/test/files/run/bug2075.scala
@@ -1,7 +1,7 @@
-object Test extends Application {
+object Test extends App {
var tm = new scala.collection.immutable.TreeMap[Int,Int]
for (i <- 0 to 100)
tm = tm.insert(i, i)
tm.keySet.filter(_ < 40)
-} \ No newline at end of file
+}