mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
This applies to cases when non-existing member is called without explicit receiver #KT-21332 Fixed
10 lines
239 B
Kotlin
Vendored
10 lines
239 B
Kotlin
Vendored
// "Create abstract function 'bar'" "true"
|
|
// ERROR: Class 'Foo' is not abstract and does not implement abstract member public abstract fun bar(): Unit defined in I
|
|
|
|
interface I
|
|
|
|
class Foo : I {
|
|
fun foo() {
|
|
<caret>bar()
|
|
}
|
|
} |