81d01a8f8e
#KT-36406 Fixed
8 lines
188 B
Kotlin
Vendored
8 lines
188 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
data class Column(val name: String)
|
|
|
|
fun test(columns: List<Column>) {
|
|
val sql = <caret>"""
|
|
SELECT ${columns.joinToString(", ")} FROM foo
|
|
""".trimIndent()
|
|
} |