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