summaryrefslogtreecommitdiff
path: root/test/files/pos/t651.scala
blob: c146446af93505218642aa539c90ab3cf61cb513 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package test;

trait Test3 {
  trait MatchableImpl {
    trait MatchImpl;
  }

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

    }
  }
}