4c7ddbe397
Fixes #KT-19167
9 lines
131 B
Kotlin
Vendored
9 lines
131 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
|
|
data class XY(val x: Int, val y: Int)
|
|
|
|
fun create() = XY(1, 2)
|
|
|
|
class Foo {
|
|
val xy = <caret>create()
|
|
} |