summaryrefslogtreecommitdiff
path: root/test/files/run/t0528.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t0528.scala')
-rw-r--r--test/files/run/t0528.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t0528.scala b/test/files/run/t0528.scala
index df6d13a17a..a76f602ed3 100644
--- a/test/files/run/t0528.scala
+++ b/test/files/run/t0528.scala
@@ -7,7 +7,7 @@ class RichStr extends Sequ[Char] {
def toArray: Array[Char] = Array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9')
}
-object Test extends Application {
+object Test extends App {
val x: RichStr = new RichStr
println((x: Sequ[Char]).toArray.deep) // calling through the bridge misses unboxing