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

6 lines
101 B
Plaintext
Vendored

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