Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
codegen
/
bytecodeText
/
controlStructures
/
kt17110.kt
blob: 090cf495d42d2e3ce695dc2ecbaa3ddbf33241d3 [
file
]
// IGNORE_BACKEND: JVM_IR
fun test
(
x
:
Int
,
y
:
Int
):
String
{
var
result
:
String
if
(
x
==
6
)
{
if
(
y
==
6
)
{
result
=
"a"
}
else
{
result
=
"b"
}
}
else
{
result
=
"c"
}
return
result
}
fun infiniteLoop
()
{
while
(
true
)
{}
}
// 2 GOTO L7
// 1 GOTO L1