6e10235208
#KT-15550 Fixed
15 lines
391 B
Kotlin
Vendored
15 lines
391 B
Kotlin
Vendored
// "Create abstract property 'foo'" "false"
|
|
// ACTION: Create local variable 'foo'
|
|
// ACTION: Create parameter 'foo'
|
|
// ACTION: Create property 'foo'
|
|
// ACTION: Create property 'foo' as constructor parameter
|
|
// ACTION: Rename reference
|
|
// ACTION: Add 'b =' to argument
|
|
// ERROR: Unresolved reference: foo
|
|
class A {
|
|
fun bar(b: Boolean) {}
|
|
|
|
fun test() {
|
|
bar(<caret>foo)
|
|
}
|
|
} |