Files
kotlin-fork/compiler/testData/diagnostics/tests/deprecated/deprecatedHidden.kt
T
2023-02-28 10:19:18 +00:00

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<!>()