LV 2.0: set KotlinCompilerVersion.IS_PRE_RELEASE to true

#KT-62058 Fixed
This commit is contained in:
Mikhail Glukhikh
2023-09-20 15:51:12 +02:00
committed by Space Team
parent e22d9821e2
commit 9bb1a0a31d
5 changed files with 1 additions and 131 deletions
@@ -19,7 +19,7 @@ public class KotlinCompilerVersion {
// Binaries produced by this compiler with that language version (or any future language version) are going to be marked
// as "pre-release" and will not be loaded by release versions of the compiler.
// Change this value before and after every major release
private static final boolean IS_PRE_RELEASE = false;
private static final boolean IS_PRE_RELEASE = true;
public static final String TEST_IS_PRE_RELEASE_SYSTEM_PROPERTY = "kotlin.test.is.pre.release";