Files
kotlin-fork/idea/testData/inspectionsLocal/replaceJavaStaticMethodWithKotlinAnalog/collections/mutableSetOf.kt.after
T
2019-04-19 18:31:17 +07:00

7 lines
134 B
Plaintext
Vendored

// WITH_RUNTIME
// MIN_JAVA_VERSION: 9
// FIX: Replace with `mutableSetOf` function
fun test() {
val a = mutableSetOf<String>()
}