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

12 lines
171 B
Kotlin
Vendored

fun String.trimIndent() = this
fun test() = doTest("""
def foo(a)
a ? 0 : 1
end
""".trimIndent())
fun doTest(rubyCode: String) {
// some code here
}