ImportOptimizer: basic support for removing unresolved imports
#KT-32409 Fixed Part of #KT-31331
This commit is contained in:
@@ -3,4 +3,6 @@
|
||||
|
||||
<caret>import kotlin.collections.*
|
||||
|
||||
val (a, b, c) = Triple(1, 2, 3)
|
||||
fun test() {
|
||||
val (a, b, c) = Triple(1, 2, 3)
|
||||
}
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
// "Optimize imports" "true"
|
||||
// WITH_RUNTIME
|
||||
|
||||
val (a, b, c) = Triple(1, 2, 3)
|
||||
fun test() {
|
||||
val (a, b, c) = Triple(1, 2, 3)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user