Files
kotlin-fork/idea/testData/refactoring/inline/inlineVariableOrProperty/lessAndGreaterInCallArgs.kt
T
2016-07-19 15:42:15 +03:00

4 lines
125 B
Kotlin
Vendored

fun f(a : (Any, Any) -> Unit, b : Int, c : Int, d : Int, e : Int, f : Int) {
val <caret>g = b < c
a(g, d > (e + f))
}