summaryrefslogblamecommitdiff
path: root/test/files/pos/t651.scala
blob: 44d20ad58088e366542c3c1444e265cc1aa54b16 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11





                       
  



                                                  
      


     
package test;

trait Test3 {
  trait MatchableImpl {
    trait MatchImpl;
  }
  
  trait BracePairImpl {
    trait BraceImpl extends MatchableImpl {
      private object MyMatch1 extends MatchImpl;
      protected def match0 : MatchImpl = MyMatch1;
      
    }
  }
}