9 lines
178 B
Kotlin
Vendored
9 lines
178 B
Kotlin
Vendored
// "Remove 'actual' modifier" "true"
|
|
|
|
actual interface ExpInterface {
|
|
actual fun first()
|
|
}
|
|
|
|
actual class ExpImpl : ExpInterface {
|
|
actual override fun <caret>first() { }
|
|
} |