8b64a4c8ea
#KT-18469 Fixed
12 lines
264 B
Plaintext
Vendored
12 lines
264 B
Plaintext
Vendored
// "Implement members" "true"
|
|
// DISABLE-ERRORS
|
|
|
|
abstract impl class Bar {
|
|
abstract impl fun foo()
|
|
}
|
|
|
|
class X : Bar() {
|
|
override fun foo() {
|
|
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
}
|
|
} |