Fix kotlin-native/backend.native/tests/samples after 82524fd

Enable language feature for these tests, because some code relies
on implicit integer coercion there
This commit is contained in:
Svyatoslav Scherbina
2023-03-14 20:03:56 +01:00
committed by Space Team
parent 67fc9be3c5
commit ba2e46758d
@@ -19,6 +19,10 @@ allprojects {
val kotlinCompilerRepo: String? by rootProject
kotlinCompilerRepo?.let { maven(it) }
}
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinNativeCompile>().configureEach {
compilerOptions.freeCompilerArgs.add("-XXLanguage:+ImplicitSignedToUnsignedIntegerConversion")
}
}
val hostOs = System.getProperty("os.name")