Fix false positive "Insert explicit type arguments" intention

#KT-16139 Fixed
This commit is contained in:
Dmitry Gridin
2019-03-06 19:54:21 +03:00
parent 212e573c26
commit 6ba0a182bb
3 changed files with 15 additions and 1 deletions
@@ -0,0 +1,8 @@
// IS_APPLICABLE: false
class X<T>(val t: T)
fun <T> X<T>.getT(): T = t
fun <T> useX(x: X<out T>) {
x.getT<caret>()
}