Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
codegen
/
bytecodeText
/
controlStructures
/
kt17110.kt
blob: 3d4c128d93763473f5d5b4877c135bae16cfd919 [
file
]
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 L6
// 1 GOTO L0