summaryrefslogtreecommitdiff
path: root/test/files/neg/bug112.scala
blob: 26a10c4e41ed8301e8f7c2a7ac4d41a9a32467fe (plain) (blame)
1
2
3
4
5
6
7
object T {
  class A {
    class B;
  }
  type C = A#B;
  class D extends C;
}