5f87e84966
Such super-calls are not are supported yet #KT-4311 Fixed
12 lines
266 B
Plaintext
Vendored
12 lines
266 B
Plaintext
Vendored
open class A {
|
|
open fun Int.foo(): Int {
|
|
return 0
|
|
}
|
|
}
|
|
|
|
class B: A() {
|
|
override fun Int.foo(): Int {
|
|
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
|
}
|
|
}
|