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.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/files/neg/forward.scala b/test/files/neg/forward.scala
index 3774fa838f..d5c0851f09 100644
--- a/test/files/neg/forward.scala
+++ b/test/files/neg/forward.scala
@@ -5,20 +5,20 @@ object Test {
{
def f: Int = x;
val x: Int = f;
- }
+ }
{
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;
Console.println("foo");
def g: Int = f;
- }
+ }
}