4d9b19da82
#KT-18539 Fixed
12 lines
215 B
Plaintext
Vendored
12 lines
215 B
Plaintext
Vendored
// "Implement members" "true"
|
|
// DISABLE-ERRORS
|
|
|
|
actual interface ExpInterface {
|
|
actual fun first()
|
|
}
|
|
|
|
actual class ExpImpl : ExpInterface {
|
|
override fun first() {
|
|
TODO("Not yet implemented")
|
|
}
|
|
} |