Import as alias with another name is now counted as usage itself #KT-11933 Fixed

This commit is contained in:
Mikhail Glukhikh
2016-05-13 19:25:14 +03:00
parent 0cf61b1b5b
commit c95e11cc7e
8 changed files with 41 additions and 0 deletions
@@ -0,0 +1,10 @@
// "Safe delete 'Imported'" "false"
// ACTION: Create test
// ACTION: Move 'Imported' to separate file
import Imported as Alias
object <caret>Imported
fun use() {
Alias.hashCode()
}