e517cbcf78
#KT-8795 Fixed
24 lines
303 B
Plaintext
Vendored
24 lines
303 B
Plaintext
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(a<caret>)
|
|
baz(a)
|
|
bar(x())
|
|
baz(x(1))
|
|
}
|
|
} |