Inline refactoring: should add explicit type argument for parameters

#KT-17402 Fixed
This commit is contained in:
Dmitry Gridin
2020-06-26 10:11:50 +07:00
parent 45234c9784
commit c3b726f10a
14 changed files with 111 additions and 11 deletions
@@ -11,7 +11,7 @@ fun oldFun(p: List<String>) {
fun newFun(p1: List<String>, p2: List<String>){}
fun foo() {
val p: List<String> = bar()
val p = bar<String>()
<caret>newFun(p, p)
}