Files
kotlin-fork/idea/testData/editor/optimizeImports/AlreadyOptimized.kt
T

20 lines
382 B
Kotlin
Vendored

/**
Comment 1
*/
package sometest
import java.io as JavaIO
import java.text.Annotation as TextAnnotation
import java.util.ArrayList
import java.util.HashSet
/**
Comment 2
*/
class Action {
fun test(hash : HashSet<Int>) {
val some : TextAnnotation? = null
val test : ArrayList<Int>? = null
JavaIO.File(StringBuilder().append("Hello").toString())
}
}