Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
syntax
/
complicatedLTGTE.kt
blob: b88a37daeff2e1e0c3827f379ccc48111ec1320a [
file
]
// FIR_IDENTICAL
// SKIP_TXT
// ISSUE: KT-52684
fun test
(
x
:
Int
,
y
:
Int
)
{
if
(
x
<
(
if
(
y
>=
115
)
1
else
2
))
{
Unit
}
}