summaryrefslogtreecommitdiff
path: root/test/pending/run/t5676.scala
blob: 3ff498eaa2688c8d6e46925f11e5eb3b5883e35d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
class Bar[T]


class Foo[T] {
  object A extends Bar[T]
}


class Baz[S] extends Foo[S] {
  override object A extends Bar[S]
}


object Test {
  
  def main(a: Array[String]) {
    val b = new Baz[Any]
    println(b)
  }
  
}