summaryrefslogtreecommitdiff
path: root/test/files/pos/spec-sealed.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/spec-sealed.scala')
-rw-r--r--test/files/pos/spec-sealed.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/spec-sealed.scala b/test/files/pos/spec-sealed.scala
index 8c06148d3e..a5ee4e3c5f 100644
--- a/test/files/pos/spec-sealed.scala
+++ b/test/files/pos/spec-sealed.scala
@@ -18,7 +18,7 @@ case class Cons[@specialized a](private val hd: a, tl: MyList[a]) extends MyList
abstract class IntList extends MyList[Int]
-object Main extends Application {
+object Main extends App {
val xs = 1 :: 2 :: 3 :: MyNil
println(xs)
}