Files
kotlin-fork/idea/testData/editor/optimizeImports/AlreadyOptimized.kt.after
T
2015-02-19 11:07:03 +03:00

20 lines
382 B
Plaintext
Vendored

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