Files
kotlin/idea/testData/multiModuleQuickFix/secondaryConstructorAbsence/jvm/WithSecondaryConstructor.kt.after

13 lines
311 B
Plaintext
Vendored

// "Add missing actual members" "true"
// DISABLE-ERRORS
actual class WithSecondaryConstructor {
fun bar(x: String) {}
val z: Double = 3.14
actual constructor(x: Int, s: String) {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}