e517cbcf78
#KT-8795 Fixed
14 lines
312 B
Kotlin
Vendored
14 lines
312 B
Kotlin
Vendored
// "Create parameter 'foo'" "false"
|
|
// ACTION: Create local variable 'foo'
|
|
// ACTION: Create property 'foo'
|
|
// ACTION: Split property declaration
|
|
// ACTION: Rename reference
|
|
// ERROR: Unresolved reference: foo
|
|
|
|
class A {
|
|
companion object {
|
|
init {
|
|
val t: Int = <caret>foo
|
|
}
|
|
}
|
|
} |