9dda5e4fcd
KT-56177
13 lines
294 B
Kotlin
Vendored
13 lines
294 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// !DIAGNOSTICS: -UNUSED_VARIABLE
|
|
|
|
@Deprecated("", level = DeprecationLevel.HIDDEN)
|
|
open class Foo
|
|
|
|
fun test(f: <!DEPRECATION_ERROR!>Foo<!>) {
|
|
f.toString()
|
|
val g: <!DEPRECATION_ERROR!>Foo<!>? = <!DEPRECATION_ERROR!>Foo<!>()
|
|
}
|
|
|
|
class Bar : <!DEPRECATION_ERROR!>Foo<!>()
|