Files
kotlin-fork/idea/testData/copyPaste/plainTextLiteral/CustomTrimIndent.kt
T

11 lines
143 B
Kotlin
Vendored

fun String.trimIndent() = this
fun test() = doTest("""
<caret>
""".trimIndent())
fun doTest(rubyCode: String) {
// some code here
}