10 lines
192 B
Kotlin
Vendored
10 lines
192 B
Kotlin
Vendored
// FIR_DISABLE_LAZY_RESOLVE_CHECKS
|
|
// !DIAGNOSTICS: -UNUSED_EXPRESSION, -UNUSED_PARAMETER
|
|
|
|
open class C<T>() {
|
|
@Deprecated("")
|
|
constructor(p: Int) : this(){}
|
|
}
|
|
|
|
class D : C<String>(1)
|