blob: 6c955767c785bb6dcf6c5e22e4b46925dd1bf660 [file] [log] [blame]
// FIR_IDENTICAL
class MyClass
class SomeClass
operator fun SomeClass.component1() {}
operator fun SomeClass.component2() {}
fun test() {
val (o, o2) = SomeClass()
val (o3, o4) = <!COMPONENT_FUNCTION_MISSING, COMPONENT_FUNCTION_MISSING!>MyClass()<!> // [COMPONENT_FUNCTION_MISSING] expected as in K1
}