jvm-abi-gen: remove SourceDebugExtension if no inline functions present

#KT-65072 Fixed
This commit is contained in:
Vladimir Tagakov
2024-01-16 16:03:30 -07:00
committed by Space Team
parent 8fbe376f25
commit 06095e86ca
7 changed files with 29 additions and 3 deletions
@@ -0,0 +1,4 @@
//this file could be in the same or in the different compilation module
package test
inline fun inlineFun() = Unit
@@ -0,0 +1,5 @@
package test
private fun main() {
inlineFun()
}
@@ -0,0 +1,4 @@
//this file could be in the same or in the different compilation module
package test
inline fun inlineFun() = Unit
@@ -0,0 +1,6 @@
package test
private fun main() {
//comment should not break ABI
inlineFun()
}