5c6f776c09
#KT-23693 Fixed
12 lines
333 B
Plaintext
Vendored
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.
|
|
}
|
|
} |