summaryrefslogblamecommitdiff
path: root/test/files/neg/forward.scala
blob: d5c0851f09e368595b1970986da5e4797b60faf5 (plain) (tree)
1
2
3
4
5
6
7
8
9
             

                 

   

                   

   


                   

   


                   

   
                   
                           
                   

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