summaryrefslogtreecommitdiff
path: root/test/files/pos/bug611.scala
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2008-06-10 12:37:28 +0000
committermichelou <michelou@epfl.ch>2008-06-10 12:37:28 +0000
commit0cd5bb6de078581f9b93b6f9b790d19ce07ac921 (patch)
tree1306aacb9eeff6d22b6ab1858dbd55d3209144fb /test/files/pos/bug611.scala
parent6036fb15c628848599ef6f5990cacb8d8a6250b3 (diff)
downloadscala-0cd5bb6de078581f9b93b6f9b790d19ce07ac921.tar.gz
scala-0cd5bb6de078581f9b93b6f9b790d19ce07ac921.tar.bz2
scala-0cd5bb6de078581f9b93b6f9b790d19ce07ac921.zip
int -> Int, etc..
Diffstat (limited to 'test/files/pos/bug611.scala')
-rw-r--r--test/files/pos/bug611.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/bug611.scala b/test/files/pos/bug611.scala
index 5ef01e4ca1..40ad28db4b 100644
--- a/test/files/pos/bug611.scala
+++ b/test/files/pos/bug611.scala
@@ -19,7 +19,7 @@ case class StringField(value: String) extends Field {
}
object Test {
- def main (ars:scala.Array[String]): unit = {
+ def main (args: scala.Array[String]) {
Console.println(List(new StringField ("bar"), new IntField(8)))
}
}