Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
kt55666.kt
blob: 1a817f35633855fc8e5d7a656e185f3426d79ebc [
file
] [
log
] [
blame
]
// FIR_IDENTICAL
inline
fun l2f1
(
p
:
()
->
Unit
)
{}
fun label2simple1
()
{
l2f1
{
return
@label2simple1
}
fun
local
()
{
l2f1
{
return
@local
}
}
labelLocal@ fun labelledLocal
()
{
l2f1
{
return
@labelLocal
}
}
}
fun main
()
{
label2simple1
()
}