51684b3fe1
Reflection types are now considered to be built-in, so their absence means the runtime is broken and the compiler can't work at all; this condition probably should be handled on another level for all built-in types
8 lines
192 B
Kotlin
Vendored
8 lines
192 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_EXPRESSION, -UNUSED_PARAMETER
|
|
|
|
open class C<T>() {
|
|
deprecated("")
|
|
constructor(p: Int) : this(){}
|
|
}
|
|
|
|
class D : <!DEPRECATED_SYMBOL_WITH_MESSAGE!>C<String><!>(1) |