Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
1f76d39e66b4ee8544feac93e4afd8e61ef9610a
/
.
/
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
()
}