summaryrefslogtreecommitdiff
path: root/test/files/run/t4146.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t4146.scala')
-rw-r--r--test/files/run/t4146.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/run/t4146.scala b/test/files/run/t4146.scala
index 6c960fa3ff..a17de50ee1 100644
--- a/test/files/run/t4146.scala
+++ b/test/files/run/t4146.scala
@@ -1,7 +1,7 @@
-object bob extends Application {
+object bob extends App {
var name = "Bob"
}
-object Test extends Application {
+object Test extends App {
assert(bob.name == "Bob")
}