RemoveRedundantQualifierNameInspection: fix false negative for java constructor

#KT-32506 Fixed
This commit is contained in:
Dmitry Gridin
2019-07-10 16:23:35 +03:00
parent bd50454a73
commit 694c231689
4 changed files with 22 additions and 1 deletions
@@ -0,0 +1,7 @@
// WITH_RUNTIME
import java.util.ArrayList
fun test() {
val a = java.<caret>util.ArrayList<Int>()
}