Files
kotlin-fork/compiler/testData/diagnostics/tests/functionLiterals/unusedLiteralInsideUnitLiteral.fir.kt
T

9 lines
93 B
Kotlin
Vendored

fun main() {
"".run {
{}
}
}
fun <T> T.run(f: (T) -> Unit): Unit = f(this)