Files
kotlin-fork/compiler/testData/diagnostics/tests/syntax/complicatedLTGT.kt
T

10 lines
135 B
Kotlin
Vendored

// FIR_IDENTICAL
// SKIP_TXT
// ISSUE: KT-8263
fun test(x: Int, y: Int) {
if (x < (if (y > 115) 1 else 2)) {
Unit
}
}