Files
kotlin/idea/testData/codeInsight/unwrapAndRemove/unwrapFunctionParameter/functionHasMultiParam.kt
Toshiaki Kameyama c1f43558b9 Unwrap: function parameter (KT-14788)
#KT-14788 Fixed
2018-03-14 21:16:58 +03:00

10 lines
128 B
Kotlin
Vendored

// IS_APPLICABLE: false
fun test() {
val i = 1
foo(baz<caret>(i, 2))
}
fun foo(i: Int) {}
fun baz(i: Int, j: Int) = 1