4d9b19da82
#KT-18539 Fixed
12 lines
196 B
Plaintext
Vendored
12 lines
196 B
Plaintext
Vendored
// "Implement members" "true"
|
|
// DISABLE-ERRORS
|
|
|
|
abstract actual class Bar {
|
|
abstract actual fun foo()
|
|
}
|
|
|
|
class X : Bar() {
|
|
override fun foo() {
|
|
TODO("Not yet implemented")
|
|
}
|
|
} |