summaryrefslogblamecommitdiff
path: root/test/files/neg/t2336.scala
blob: 4cea02b721f0814c840932ebaf842187d934b1f7 (plain) (tree)
1
2
3
4
5
6
7






                                                                         
// we get now: t2336.scala:5: error: type Foo[Int] is not a stable prefix
class Foo[A] {
  class Bar[B >: A](x: B) extends Foo[B]
}
object bug {
  new Foo[Int]#Bar(0)
}