Files
kotlin-fork/idea/testData/inspectionsLocal/replaceJavaStaticMethodWithKotlinAnalog/collections/mutableSetOf.kt
T

7 lines
144 B
Kotlin
Vendored

// WITH_RUNTIME
// MIN_JAVA_VERSION: 9
// FIX: Replace with `mtableSetOf` function
fun test() {
val a = java.util.Set.of<caret><String>()
}