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

7 lines
111 B
Plaintext
Vendored

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