Files
kotlin-fork/idea/testData/editor/optimizeImports/AlreadyOptimized.kt
T
2013-10-25 11:05:02 +04:00

20 lines
382 B
Kotlin

/**
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())
}
}