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

6 lines
96 B
Plaintext
Vendored

// WITH_RUNTIME
import java.util.HashSet
fun foo() {
var list: HashSet<Int> = hashSetOf()
}