Files
kotlin-fork/compiler/testData/diagnostics/tests/deprecated/deprecatedHidden.fir.kt
T

12 lines
181 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_VARIABLE
@Deprecated("", level = DeprecationLevel.HIDDEN)
open class Foo
fun test(f: Foo) {
f.toString()
val g: Foo? = Foo()
}
class Bar : Foo()