Sign in
android
/
platform
/
external
/
jetbrains
/
kotlin
/
v1.3.20
/
.
/
compiler
/
testData
/
cli
/
js
/
inlineCycle.kt
blob: 5a92ab84ba5b7616b38e7754b24fe3e0072f7f9c [
file
] [
log
] [
blame
]
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
()
}