summaryrefslogtreecommitdiff
path: root/test/files/pos/bug261-ba.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/bug261-ba.scala')
-rw-r--r--test/files/pos/bug261-ba.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/pos/bug261-ba.scala b/test/files/pos/bug261-ba.scala
index c66a68d101..6c9c5b10b7 100644
--- a/test/files/pos/bug261-ba.scala
+++ b/test/files/pos/bug261-ba.scala
@@ -3,7 +3,7 @@ trait B {
def f = println(foo)
}
trait A { val foo: String = "A" }
-object Test extends Application with B with A {
+object Test extends App with B with A {
println(foo) // prints "A", as expected
f // prints "B", as expected
-} \ No newline at end of file
+}