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,8 @@
// WITH_RUNTIME
package foo
class Foo
fun bar() {
foo<caret>.Foo::class.java
}