Files
kotlin-fork/compiler/testData/diagnostics/tests/deprecated/genericConstructorUsage.kt
T

10 lines
210 B
Kotlin
Vendored

// FIR_DISABLE_LAZY_RESOLVE_CHECKS
// !DIAGNOSTICS: -UNUSED_EXPRESSION, -UNUSED_PARAMETER
open class C<T>() {
@Deprecated("")
constructor(p: Int) : this(){}
}
class D : <!DEPRECATION!>C<String><!>(1)