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

12 lines
247 B
Kotlin
Vendored

fun unusedLiteral(){
<!UNUSED_LAMBDA_EXPRESSION!>{ ->
val <!UNUSED_VARIABLE!>i<!> = 1
}<!>
}
fun unusedLiteralInDoWhile(){
do<!UNUSED_LAMBDA_EXPRESSION!>{ ->
val <!UNUSED_VARIABLE!>i<!> = 1
}<!> while(false)
}