mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
12 lines
268 B
Plaintext
Vendored
12 lines
268 B
Plaintext
Vendored
// "Implement members" "true"
|
|
// DISABLE-ERRORS
|
|
|
|
abstract actual class Bar {
|
|
abstract actual fun foo()
|
|
}
|
|
|
|
class X : Bar() {
|
|
override fun foo() {
|
|
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
}
|
|
} |