Files
kotlin-fork/idea/testData/quickfix/addDefaultConstructor/interface.kt
T
Mikhail Glukhikh 79abf90916 Introduce "add default constructor for expect class" fix
Related to KT-24597
2018-08-09 12:59:54 +03:00

8 lines
203 B
Kotlin
Vendored

// "Add default constructor to expect class" "false"
// ACTION: Create subclass
// ACTION: Remove constructor call
// ERROR: This class does not have a constructor
interface A
open class C : A<caret>()