Files
T
2019-11-13 08:37:25 +09:00

12 lines
261 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 yet implemented")
}
}