e517cbcf78
#KT-8795 Fixed
24 lines
303 B
Kotlin
Vendored
24 lines
303 B
Kotlin
Vendored
// "Rename reference" "true"
|
|
// ERROR: Unresolved reference: x
|
|
// ERROR: Unresolved reference: x
|
|
package x
|
|
|
|
class A {
|
|
val a = 1
|
|
val s = ""
|
|
|
|
fun bar(i: Int) {
|
|
|
|
}
|
|
|
|
fun baz(i: Int) {
|
|
|
|
}
|
|
|
|
fun foo() {
|
|
bar(<caret>x)
|
|
baz(x)
|
|
bar(x())
|
|
baz(x(1))
|
|
}
|
|
} |