summaryrefslogtreecommitdiff
path: root/test/files/pos/bug261-ab.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/bug261-ab.scala')
-rw-r--r--test/files/pos/bug261-ab.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/pos/bug261-ab.scala b/test/files/pos/bug261-ab.scala
index 80699e692c..df641e811a 100644
--- a/test/files/pos/bug261-ab.scala
+++ b/test/files/pos/bug261-ab.scala
@@ -3,7 +3,7 @@ trait B {
private val foo: String = "B"
def f = println(foo)
}
-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
+}