Files
kotlin-fork/idea/testData/refactoring/introduceParameter/substituteInfixCall.kt
T

10 lines
164 B
Kotlin
Vendored

// WITH_DEFAULT_VALUE: false
fun foo(a: Int): Int {
fun Int.bar(n: Int) = this + n
return (<selection>a bar 1</selection>) * 2
}
fun test() {
foo(2)
}