summaryrefslogtreecommitdiff
path: root/test/files/neg/t667.scala
blob: a79bc272e44fb4c505ae36258cb5e079814daa72 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package test;

object test {
  trait A {
    trait Ni;
  }
  class B extends A {
    class Ni extends super.Ni with Ni;
  }
}