package test inline fun forEach0(list: List, block: (T) -> Unit): List { val list2 = list list2.forEach(block) return list2 }