e9d5396fa9
#KT-66595 Fixed
11 lines
254 B
Kotlin
Vendored
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<!>
|
|
}
|