mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 00:21:28 +00:00
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()
|
|
}
|
|
} |