aboutsummaryrefslogblamecommitdiff
path: root/tests/untried/neg/forward.scala
blob: d5c0851f09e368595b1970986da5e4797b60faf5 (plain) (tree)























                           
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;
  }
}