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

6 lines
101 B
Kotlin
Vendored

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