2abcd17713
#KT-10668 Fixed (cherry picked from commit bc4c013)
12 lines
243 B
Kotlin
Vendored
12 lines
243 B
Kotlin
Vendored
// "Create extension function 'foo'" "false"
|
|
// ACTION: Convert to expression body
|
|
// ACTION: Create function 'foo'
|
|
// ACTION: Rename reference
|
|
// ERROR: Unresolved reference: foo
|
|
fun bar(b: Boolean) {
|
|
|
|
}
|
|
|
|
fun test() {
|
|
bar(<caret>foo(1))
|
|
} |