Files
kotlin-fork/idea/testData/unifier/equivalence/expressions/stringTemplate.kt
T

7 lines
177 B
Kotlin

fun foo(n: Int, f: (Int) -> Int) {
<selection>"test: $n, ${f(n)}"</selection>
"test: ${n}, ${f(n)}"
"test: ${f(n)}, ${n}"
"test: n, ${f(n)}"
"test: $n, $f"
}