fe1e2b8b34
This option removes debug info, such as: - SourceFile attribute on classes - LocalVariableTable, LineNumberTable, SourceDebugExtension attributes on inline functions - @SourceDebugExtension annotation on inline functions #KT-33020 Fixed
7 lines
129 B
Kotlin
Vendored
7 lines
129 B
Kotlin
Vendored
package test
|
|
|
|
fun <T> forEach0(list: List<T>, block: (T) -> Unit) {
|
|
// Comment before the function
|
|
list.forEach(block)
|
|
}
|