summaryrefslogblamecommitdiff
path: root/test/files/neg/forward.scala
blob: 3774fa838f4bb493b4c7904a0fb5f21aa826a5d4 (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;
  }    
}