diff --git a/native/native.tests/tests/org/jetbrains/kotlin/generators/tests/GenerateNativeTests.kt b/native/native.tests/tests/org/jetbrains/kotlin/generators/tests/GenerateNativeTests.kt index c87f5da0ed7..579a6d61fea 100644 --- a/native/native.tests/tests/org/jetbrains/kotlin/generators/tests/GenerateNativeTests.kt +++ b/native/native.tests/tests/org/jetbrains/kotlin/generators/tests/GenerateNativeTests.kt @@ -189,7 +189,7 @@ fun main() { annotations = listOf( debugger(), provider(), - debugOnly(), + forceDebugMode(), hostOnly() ) ) { @@ -201,7 +201,7 @@ fun main() { private inline fun provider() = annotation(T::class.java) -private fun debugOnly() = annotation( +private fun forceDebugMode() = annotation( EnforcedProperty::class.java, "property" to ClassLevelProperty.OPTIMIZATION_MODE, "propertyValue" to "DEBUG"