bc580d2fd9
#KT-34121 Fixed
11 lines
162 B
Kotlin
Vendored
11 lines
162 B
Kotlin
Vendored
// FIX: none
|
|
// WITH_RUNTIME
|
|
fun main() {
|
|
val o = Foo("")
|
|
o.<caret>copy(prop = "New")
|
|
bar(o)
|
|
}
|
|
|
|
data class Foo(val prop: String)
|
|
|
|
fun bar(foo: Foo) {} |