ed5791ed9e
Related to KT-25044
10 lines
254 B
Kotlin
Vendored
10 lines
254 B
Kotlin
Vendored
// "Remove 'actual' modifier" "true"
|
|
// ERROR: Actual function 'first' has no corresponding expected declaration
|
|
|
|
actual interface ExpInterface {
|
|
actual fun first()
|
|
}
|
|
|
|
actual class ExpImpl : ExpInterface {
|
|
actual override fun <caret>first() { }
|
|
} |