84c6f9bf45
This applies to cases when non-existing member is called without explicit receiver #KT-21332 Fixed
12 lines
277 B
Plaintext
Vendored
12 lines
277 B
Plaintext
Vendored
// "Create abstract function 'bar'" "true"
|
|
// ERROR: Class 'Foo' is not abstract and does not implement abstract base class member public abstract fun bar(): Unit defined in A
|
|
|
|
abstract class A {
|
|
abstract fun bar()
|
|
}
|
|
|
|
class Foo : A() {
|
|
fun foo() {
|
|
bar()
|
|
}
|
|
} |