summaryrefslogblamecommitdiff
path: root/test/files/pos/t704.scala
blob: e77a54a58ee723da3653d6ef98e1fbeccf37e024 (plain) (tree)
1
2
3
4
5
6
7
8
         
                                            
                                            
                             
 

                   
                   






                                      
 





                                  
 
trait D {
  private val x = "xxxx should appear twice"
  private object xxxx { Console.println(x) }
  def get_xxxx: AnyRef = xxxx
}

trait E extends D {
  def f(): Unit = {
    val y = "yyyy should appear twice"
    object yyyy {
      val x1 = get_xxxx
      Console.println(y)
    }
    yyyy
  }
}
class C extends E {}
object Go extends D {
  def main(args : Array[String]) {
    new C().f()
    new C().f()
  }
}