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()
}