84c6f9bf45
This applies to cases when non-existing member is called without explicit receiver #KT-21332 Fixed
12 lines
222 B
Kotlin
Vendored
12 lines
222 B
Kotlin
Vendored
// "Create abstract function 'Foo.bar'" "false"
|
|
// ACTION: Create function 'bar'
|
|
// ACTION: Rename reference
|
|
// ERROR: Unresolved reference: bar
|
|
|
|
open class A
|
|
|
|
class Foo : A() {
|
|
fun foo() {
|
|
<caret>bar()
|
|
}
|
|
} |