a1e86e8bfa
(cherry picked from commit a51d3fc)
12 lines
308 B
Kotlin
Vendored
12 lines
308 B
Kotlin
Vendored
// "Create local variable 'foo'" "false"
|
|
// ACTION: Create extension property 'A.foo'
|
|
// ACTION: Create member property 'A.foo'
|
|
// ACTION: Create property 'foo' as constructor parameter
|
|
// ACTION: Rename reference
|
|
// ERROR: Unresolved reference: foo
|
|
|
|
class A
|
|
|
|
fun test(a: A) {
|
|
val t: Int = a.<caret>foo
|
|
} |