RemoveRedundantQualifierNameInspection: add regression test

#KT-35898
This commit is contained in:
Dmitry Gridin
2020-04-07 15:56:39 +07:00
parent 661812b255
commit b548c5bf93
2 changed files with 13 additions and 0 deletions
@@ -0,0 +1,8 @@
// PROBLEM: none
class Test1<T: Any> {
private inner class Cell
fun check(o: Any) {
(o as? Test1<caret><*>.Cell)
}
}