19d1532dc7
#KT-14021 Fixed
11 lines
194 B
Kotlin
Vendored
11 lines
194 B
Kotlin
Vendored
// "Add parameter to function 'foo'" "true"
|
|
// DISABLE-ERRORS
|
|
fun foo() {}
|
|
|
|
class Test {
|
|
val x: String = ""
|
|
get() {
|
|
foo(field<caret>)
|
|
return field
|
|
}
|
|
} |