12 lines
287 B
Plaintext
Vendored
12 lines
287 B
Plaintext
Vendored
// "Implement members" "true"
|
|
// DISABLE-ERRORS
|
|
|
|
actual interface ExpInterface {
|
|
actual fun first()
|
|
}
|
|
|
|
actual class ExpImpl : ExpInterface {
|
|
override fun first() {
|
|
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
}
|
|
} |