Change to star projection: do not suggest in arguments or receiver

#KT-23259 Fixed
This commit is contained in:
Toshiaki Kameyama
2019-02-13 16:54:00 +09:00
committed by Dmitry Gridin
parent 73396b5018
commit 4e3d13fcee
19 changed files with 196 additions and 2 deletions
@@ -0,0 +1,6 @@
// "Change type arguments to <*>" "true"
fun test(a: Any) {
foo(a as List<Boolean><caret>)
}
fun <T> foo(list: List<T>) {}