Files
kotlin-fork/idea/testData/multiModuleQuickFix/classFunctionSameSignature/jvm/jvm.kt.after
T
2018-11-21 15:13:00 +03:00

12 lines
333 B
Plaintext
Vendored

// "Add missing actual members" "true"
// DISABLE-ERRORS
actual object O {
fun <T> hello(): MutableMap<String, T> {
TODO("not implemented")
}
actual fun <T : Any> hello(): MutableMap<String, T> {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}