Files
kotlin-fork/idea/testData/quickfix/addDefaultConstructor/expectInterface.kt
T
Dmitry Gridin 147521d6cb Add intention to introduce import alias
#KT-16118 Fixed
 #KT-30007 Fixed
2019-02-21 12:25:09 +03:00

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