summaryrefslogtreecommitdiff
path: root/test/files/neg/forward.scala
diff options
context:
space:
mode:
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;
}
}