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

7 lines
120 B
Kotlin
Vendored

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