summaryrefslogblamecommitdiff
path: root/test/files/pos/bug210.scala
blob: 0049d1f34c52b0c78f57abc2477ef4cf8cfea2b3 (plain) (tree)
1
2
3
4
5
6
7
8
9

             
                                          
                                                
                         



                           
                                                


                              

                            

  
trait Lang1 {
  trait Exp;
  trait Visitor { def f(left: Exp): Unit }
  class Eval1 extends Visitor { self: Visitor =>
    def f(left: Exp) = ()
  }
}

trait Lang2 extends Lang1 {
  class Eval2 extends Eval1 { self: Visitor => }
}
/*
object Main with Application {
  val lang2 = new Lang2 {}
  val eval = new lang2.Eval2
}
*/