More accurate import conflict detection

This commit is contained in:
Valentin Kipyatkov
2015-03-31 22:21:45 +03:00
parent e22f28c061
commit 7e9314bd40
11 changed files with 72 additions and 12 deletions
@@ -0,0 +1,8 @@
// IMPORT: java.util.ArrayList
import pack1.ArrayList
import java.util.*
fun foo() {
ArrayList()
ArrayList<String>()
}