blob: b8f25edf3e10aaf52bda321b73776d95ddb2e255 [file]
// 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<!>()