aboutsummaryrefslogblamecommitdiff
path: root/tests/pending/run/t5676.scala
blob: 817ac823a8d12b8fbf455ebe63133e95461cfbaf (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                    
                                      






                                                               
import java.lang.reflect.Modifier

class Bar[T]

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

class Baz[S] extends Foo[S] {
  override object A extends Bar[S] {
    def foo(): String = "ok"
  }
}

object Test {

  def main(a: Array[String]): Unit = {
    val b = new Baz[Any]
    println(b.A.foo())
    println(Modifier.isFinal(classOf[Baz[Any]].getModifiers()))
    println(Modifier.isFinal(Test.getClass.getModifiers()))
  }

}