summaryrefslogtreecommitdiff
path: root/test/files/run/t3670.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t3670.scala')
-rw-r--r--test/files/run/t3670.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/run/t3670.scala b/test/files/run/t3670.scala
index a37c3a242c..97f1e8a79c 100644
--- a/test/files/run/t3670.scala
+++ b/test/files/run/t3670.scala
@@ -11,7 +11,7 @@ class C {
}
}
-class M extends Application {
+class M extends App {
def foo {
lazy val a = {
lazy val b = 1
@@ -25,7 +25,7 @@ class M extends Application {
}
}
-object Test extends Application {
+object Test extends App {
new C()
new M().foo
-} \ No newline at end of file
+}