RemoveRedundantQualifierNameInspection: support class literal expression

#KT-32046 Fixed
This commit is contained in:
Dmitry Gridin
2019-06-20 18:12:39 +07:00
parent b930c061a8
commit a170de2c56
12 changed files with 163 additions and 5 deletions
@@ -0,0 +1,17 @@
// WITH_RUNTIME
// DISABLE-ERRORS
package foo.www.ddd
class Check {
class BBD {
class Bwd {
fun dad() {
val Bwd = 42
class BBD
val a = Check.BBD.Bwd::class.java.annotatedInterfaces.size
}
}
}
}