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

10 lines
106 B
Kotlin
Vendored

// OPTION: 0
fun test() {
val i = 1
foo(bar<caret>(1))
}
fun foo(i: Int) {}
fun bar(i: Int) = 1