34267e436e
This also fixes weird suppressions in user code: instead of
«@Suppress("DEPRECATED_SYMBOL_WITH_MESSAGE")» you should now use
«@Suppress("DEPRECATION")»
9 lines
175 B
Kotlin
Vendored
9 lines
175 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_EXPRESSION, -UNUSED_PARAMETER
|
|
|
|
open class C<T>() {
|
|
@Deprecated("")
|
|
constructor(p: Int) : this(){}
|
|
}
|
|
|
|
class D : <!DEPRECATION!>C<String><!>(1)
|