Files
kotlin-fork/idea/testData/multiModuleQuickFix/companionAbsence/jvm/WithCompanion.kt.after
T
Mikhail Glukhikh 3612c2983e Use OverrideMemberChooserObject to generate actual decls in quick-fixes
This can fix a lot of issues related to inexact generation, in particular
#KT-27093 Fixed
2018-11-21 15:12:59 +03:00

10 lines
162 B
Plaintext
Vendored

// "Add missing actual members" "true"
// DISABLE-ERRORS
actual class WithCompanion {
actual companion object {
actual fun foo() {
}
}
}