Files
kotlin-fork/compiler/testData/diagnostics/tests/deprecated/genericConstructorUsage.kt
T
2023-04-13 10:50:35 +00:00

10 lines
192 B
Kotlin
Vendored

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