summaryrefslogtreecommitdiff
path: root/test/files/pos/bug613.scala
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2008-05-20 10:17:41 +0000
committermichelou <michelou@epfl.ch>2008-05-20 10:17:41 +0000
commit44fd5e7272f7fbcc901d1ecaf563351217a50e7d (patch)
treec9b0ccf1aaceda7e7a066e414c8df16fad173b6e /test/files/pos/bug613.scala
parent5f450da638cd4518ee4993bcee03db43387e5ad6 (diff)
downloadscala-44fd5e7272f7fbcc901d1ecaf563351217a50e7d.tar.gz
scala-44fd5e7272f7fbcc901d1ecaf563351217a50e7d.tar.bz2
scala-44fd5e7272f7fbcc901d1ecaf563351217a50e7d.zip
int -> Int, etc..
Diffstat (limited to 'test/files/pos/bug613.scala')
-rw-r--r--test/files/pos/bug613.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/pos/bug613.scala b/test/files/pos/bug613.scala
index 49071fa806..cf179420f4 100644
--- a/test/files/pos/bug613.scala
+++ b/test/files/pos/bug613.scala
@@ -1,7 +1,7 @@
class Outer extends Application {
- val y: int = 1
+ val y: Int = 1
abstract class C {
- val x: int
+ val x: Int
}
val foo = new C {
class I {
@@ -13,5 +13,5 @@ class Outer extends Application {
object Test extends Application {
val o = new Outer
- Console.println(o.foo.x)
+ println(o.foo.x)
}