2f5e820afb
#KT-8664 Fixed
10 lines
111 B
Kotlin
Vendored
10 lines
111 B
Kotlin
Vendored
data class X {
|
|
operator fun component1(): Int = 0
|
|
}
|
|
|
|
fun foo(x: X) {
|
|
x.<caret>
|
|
}
|
|
|
|
// EXIST: component1
|