147521d6cb
#KT-16118 Fixed #KT-30007 Fixed
12 lines
288 B
Kotlin
Vendored
12 lines
288 B
Kotlin
Vendored
// "Add default constructor to expect class" "false"
|
|
// ENABLE_MULTIPLATFORM
|
|
// ACTION: Create subclass
|
|
// ACTION: Introduce import alias
|
|
// ACTION: Remove constructor call
|
|
// ERROR: This class does not have a constructor
|
|
|
|
expect interface A
|
|
|
|
open class C : A<caret>()
|
|
|
|
actual interface A |