5f87e84966
Such super-calls are not are supported yet #KT-4311 Fixed
9 lines
99 B
Kotlin
Vendored
9 lines
99 B
Kotlin
Vendored
open class A {
|
|
open fun Int.foo(): Int {
|
|
return 0
|
|
}
|
|
}
|
|
|
|
class B: A() {
|
|
<caret>
|
|
} |