Files
kotlin-fork/compiler/testData/diagnostics/tests/syntax/complicatedLTGTE.kt
T
Denis.Zharkov 3ba11711d2 Adjust test data after reverting fix for KT-35811
(see previous commit)

^KT-52684 Fixed
2022-06-09 15:44:36 +00:00

10 lines
137 B
Kotlin
Vendored

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