db787c78d6
#KT-25044 Fixed
8 lines
277 B
Kotlin
Vendored
8 lines
277 B
Kotlin
Vendored
// "Implement members" "true"
|
|
// ERROR: Class 'ExpImpl' is not abstract and does not implement abstract member public abstract actual fun first(): Unit defined in ExpInterface
|
|
|
|
actual interface ExpInterface {
|
|
actual fun first()
|
|
}
|
|
|
|
actual class ExpImpl<caret> : ExpInterface |