summaryrefslogtreecommitdiff
path: root/test/files/neg/forward.scala
diff options
context:
space:
mode:
authorIulian Dragos <jaguarul@gmail.com>2008-05-19 18:05:33 +0000
committerIulian Dragos <jaguarul@gmail.com>2008-05-19 18:05:33 +0000
commitcef268814af8845b5879130a9b64d772e75163b3 (patch)
tree9163649df167be1208532b0db7f21893664139ad /test/files/neg/forward.scala
parentf1954d9a3570572f5b79511c4eec7b6ceb7a9dd1 (diff)
downloadscala-cef268814af8845b5879130a9b64d772e75163b3.tar.gz
scala-cef268814af8845b5879130a9b64d772e75163b3.tar.bz2
scala-cef268814af8845b5879130a9b64d772e75163b3.zip
More deprecation warnings fixed.
Diffstat (limited to 'test/files/neg/forward.scala')
-rw-r--r--test/files/neg/forward.scala24
1 files changed, 12 insertions, 12 deletions
diff --git a/test/files/neg/forward.scala b/test/files/neg/forward.scala
index b7f7a50583..d5c0851f09 100644
--- a/test/files/neg/forward.scala
+++ b/test/files/neg/forward.scala
@@ -1,24 +1,24 @@
object Test {
- def f: int = x;
- val x: int = f;
+ def f: Int = x;
+ val x: Int = f;
{
- def f: int = x;
- val x: int = f;
+ def f: Int = x;
+ val x: Int = f;
}
{
- def f: int = g;
- val x: int = f;
- def g: int = x;
+ def f: Int = g;
+ val x: Int = f;
+ def g: Int = x;
}
{
- def f: int = g;
- var x: int = f;
- def g: int = x;
+ def f: Int = g;
+ var x: Int = f;
+ def g: Int = x;
}
{
- def f: int = g;
+ def f: Int = g;
Console.println("foo");
- def g: int = f;
+ def g: Int = f;
}
}