mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Unmute tests ignored for K2 as part of ^KTIJ-29047. GitOrigin-RevId: 6d695e3bbedde56e5c9991eb638a326edc5c49d7
17 lines
549 B
Kotlin
17 lines
549 B
Kotlin
// "Implement members" "true"
|
|
// ENABLE_MULTIPLATFORM
|
|
// ERROR: Expected interface 'InterfaceWithVals' has no actual declaration in module light_idea_test_case for JVM
|
|
|
|
fun TODO(s: String): Nothing = null!!
|
|
|
|
expect interface InterfaceWithVals {
|
|
fun funInInterface()
|
|
|
|
val importantVal: Int
|
|
}
|
|
|
|
class <caret>ChildOfInterface : InterfaceWithVals{
|
|
}
|
|
|
|
// FUS_QUICKFIX_NAME: org.jetbrains.kotlin.idea.core.overrideImplement.ImplementMembersHandler
|
|
// FUS_K2_QUICKFIX_NAME: org.jetbrains.kotlin.idea.core.overrideImplement.KtImplementMembersQuickfix |