4d9b19da82
#KT-18539 Fixed
12 lines
261 B
Plaintext
Vendored
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")
|
|
}
|
|
} |