Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
cli
/
js
/
inlineCycle.kt
blob: 09fc245f430191587e6ce30be5c04e6abb6b8e6d [
file
]
inline
fun a
(
l
:
()
->
Unit
)
{
b
(
l
)
//check that nested not recognized as cycle
c
{
c
{
}
}
}
inline
fun b
(
p
:
()
->
Unit
)
{
p
()
a
(
p
)
}
inline
fun c
(
p
:
()
->
Unit
)
{
p
()
}