06095e86ca
#KT-65072 Fixed
7 lines
128 B
Kotlin
Vendored
7 lines
128 B
Kotlin
Vendored
package test
|
|
|
|
fun <T> forEach0(list: List<T>, block: (T) -> Unit) {
|
|
list.forEach(block)
|
|
// Comment after the function
|
|
}
|