Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
labels
/
kt3920.kt
blob: 7403376d85e4b1f3348d8489eca55f7c077eea99 [
file
]
// FIR_IDENTICAL
// !DIAGNOSTICS: -UNUSED_VARIABLE
//KT-3920 Labeling information is lost when passing through some expressions
fun test
()
{
run f@
{
val x
=
if
(
1
>
2
)
return
@f
1
else
2
2
}
}