59a714ca5c
#KT-12943 Fixed
12 lines
203 B
Kotlin
Vendored
12 lines
203 B
Kotlin
Vendored
// SHOULD_FAIL_WITH: Function <b><code>foo()</code></b> is overridden by declaration(s) in a subclass
|
|
open class A {
|
|
open fun <caret>foo() {
|
|
|
|
}
|
|
}
|
|
|
|
class B: A() {
|
|
override fun foo() {
|
|
|
|
}
|
|
} |