fun main() { thisIsInlined { true } } // The function is replaced with the contects of the function // No performance overhead inline fun thisIsInlined(predicate: (Int) -> Boolean): Int? = 42.takeIf(predicate)