summaryrefslogtreecommitdiff
path: root/test/files/neg/forward.scala
blob: b7f7a50583cf574da802022e816f91838b1996af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
object Test {
  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;
    var x: int = f;
    def g: int = x;
  }
  {
    def f: int = g;
    Console.println("foo");
    def g: int = f;
  }
}