Files
kotlin-fork/idea/testData/quickfix/addDefaultConstructor/expect.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
218 B
Kotlin
Vendored

// "Add default constructor to expect class" "true"
// ENABLE_MULTIPLATFORM
// ERROR: Expected class 'A' has no actual declaration in module light_idea_test_case for JVM
expect open class A
open class C : A<caret>()