KT-13689 Typealias constructor usage counts as original type usage for optimize imports

#KT-13689 Fixed
(cherry picked from commit bde7e2b)
This commit is contained in:
Valentin Kipyatkov
2016-09-14 22:26:22 +03:00
committed by Dmitry Petrov
parent 9d373fba67
commit 7d214c6e58
5 changed files with 17 additions and 1 deletions
@@ -0,0 +1,5 @@
import kotlin.Any
fun foo(): Any {
throw UnsupportedOperationException()
}
@@ -0,0 +1,3 @@
fun foo(): Any {
throw UnsupportedOperationException()
}