Files
kotlin-fork/compiler/testData/diagnostics/tests/deprecated/hiddenComponentInDestructuringDeclaration.kt
T
2024-03-19 12:32:17 +00:00

12 lines
310 B
Kotlin
Vendored

// TARGET_FRONTEND: ClassicFrontend
// ^ reason for a FIR mute: KT-66595
class SimpleKlass {
@Deprecated("deprecated and hidden", level = DeprecationLevel.HIDDEN)
operator fun component1(): Int = 42
}
fun test(simpleKlass: SimpleKlass) {
val (s1) = <!COMPONENT_FUNCTION_MISSING!>simpleKlass<!>
}