Fix "add <*>" quick-fix for inner class with generic outer one

So #KT-20763 Fixed
This commit is contained in:
Toshiaki Kameyama
2017-10-25 06:04:11 +03:00
committed by Mikhail Glukhikh
parent 7b2a66c006
commit b8c5d1b852
19 changed files with 256 additions and 10 deletions
@@ -0,0 +1,5 @@
// "Add star projections" "true"
class A<T> {
inner class B
fun test(x: Any) = x is B<caret>
}