Files
kotlin-fork/idea/testData/multiModuleQuickFix/actualNoImplementAsConstructorParam/jvm/jvm.kt
T
Mikhail Glukhikh fcfeb33501 Don't suggest "Implement as constructor parameters" in actual class
This applies if expect class has primary constructor declared
#KT-27791 Fixed
2018-11-07 11:56:55 +03:00

8 lines
343 B
Kotlin
Vendored

// "Implement as constructor parameters" "false"
// ERROR: Class 'End' is not abstract and does not implement abstract member public abstract val a: Int defined in IFoo
// ACTION: Create test
// ACTION: Implement members
// ACTION: Make 'End' abstract
// ACTION: Rename file to End.kt
actual class <caret>End actual constructor(i: Int) : IFoo