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

12 lines
277 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) = simpleKlass
}