summaryrefslogtreecommitdiff
path: root/test/files/run/t5428.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t5428.scala')
-rw-r--r--test/files/run/t5428.scala12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/files/run/t5428.scala b/test/files/run/t5428.scala
index fb58cbbe24..44003e06ba 100644
--- a/test/files/run/t5428.scala
+++ b/test/files/run/t5428.scala
@@ -11,19 +11,19 @@ class A extends StackProxy[Int] {
object Test {
-
+
def main(args: Array[String]) {
val a = new A
-
+
a push 3
a push 4
a push 5
-
+
a.push(6, 7, 8)
-
+
println(a)
-
+
a.pop
}
-
+
}