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