Files
kotlin-fork/idea/testData/multiModuleQuickFix/other/classFunctionWithConstructorAndParameters/jvm/My.kt.after
T
2019-08-27 17:26:08 +07:00

10 lines
151 B
Plaintext
Vendored

// "Add missing actual members" "true"
// DISABLE-ERRORS
actual class My {
actual constructor(a: Int, b: String)
actual fun test() {
}
}