Files
kotlin-fork/plugins/jvm-abi-gen/testData/compare/debugInfoLineNumberTable/base/test.kt
T
Alexander Udalov fe1e2b8b34 jvm-abi-gen: Support removeDebugInfo option
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
2023-12-07 20:50:01 +00:00

8 lines
132 B
Kotlin
Vendored

package test
inline fun sum(x: Int, y: Int): Int {
// Comment before local variable
val result = x + y
return result
}