blob: 0f89e9954565b6d8645604f6ce3789a67d096608 [file]
// !DIAGNOSTICS: -UNUSED_PARAMETER
// FILE: GA.kt
package test.x
open class GA<T> protected constructor()
// FILE: Main.kt
package test
import test.x.GA
class C : GA<Any>() {
companion object {
fun bar() = GA<Any>() // Should be error
}
}
fun main(args: Array<String>) {
C.bar()
}