Fixed multiple bugs in optimize imports for JS-target

#KT-13689 Fixed
This commit is contained in:
Valentin Kipyatkov
2016-10-06 21:32:22 +03:00
parent 45cd4f1e29
commit b84260f39f
148 changed files with 599 additions and 373 deletions
@@ -0,0 +1,11 @@
// NAME_COUNT_TO_USE_STAR_IMPORT: 2
import p1.plus
import p2.v1
import p2.v2
import p2.v3
fun f(runnable: Runnable) {
var r = runnable
r += 1
v1 + v2 + v3
}