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

6 lines
99 B
Kotlin
Vendored

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