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

11 lines
254 B
Kotlin
Vendored

// FIR_IDENTICAL
class SimpleKlass {
@Deprecated("deprecated and hidden", level = DeprecationLevel.HIDDEN)
operator fun component1(): Int = 42
}
fun test(simpleKlass: SimpleKlass) {
val (s1) = <!COMPONENT_FUNCTION_MISSING!>simpleKlass<!>
}