Files
kotlin/idea/testData/refactoring/inline/function/fromIntellij/ParamNameConflictsWithLocalVar.kt

14 lines
154 B
Kotlin
Vendored

fun foo(fe: Int) {
println(fe)
}
fun bar(br: Boolean) {
val fe = 0
if (br) {
foo(fe)
}
else {
<caret>foo(11)
}
}