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