Files
kotlin-fork/idea/testData/intentions/introduceVariable/atNestedExpression.kt
T
2016-04-19 20:27:37 +03:00

5 lines
75 B
Kotlin
Vendored

fun foo(a: Int, b: Int) = a + b
fun foo() {
foo(1 <caret>+ 2, 3 * 4)
}