11 lines
129 B
Kotlin
Vendored
11 lines
129 B
Kotlin
Vendored
// FIR_COMPARISON
|
|
data class X {
|
|
operator fun component1(): Int = 0
|
|
}
|
|
|
|
fun foo(x: X) {
|
|
x.<caret>
|
|
}
|
|
|
|
// EXIST: component1
|