Files
kotlin-fork/idea/testData/intentions/convertCollectionConstructorToFunction/replaceHashMapCall.kt
T

6 lines
106 B
Kotlin
Vendored

// WITH_RUNTIME
import java.util.HashMap
fun foo() {
var list: HashMap<Int, Int> = <caret>HashMap()
}