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

5 lines
88 B
Plaintext
Vendored

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