Disable NewInference for stdlib tests

There is one failing test namely `ValByMapExtensionsTest.doTest`, which
 is quite questionable because its checks the use of out projection and
 Exact annotation (see KT-18789)
This commit is contained in:
Mikhail Zarechenskiy
2020-02-13 10:12:53 +03:00
parent 2a4caf6dc8
commit cdf5323f8c
7 changed files with 14 additions and 7 deletions
+2 -1
View File
@@ -15,7 +15,8 @@ compileTestKotlin {
freeCompilerArgs = [
"-Xuse-experimental=kotlin.ExperimentalStdlibApi",
"-Xuse-experimental=kotlin.ExperimentalUnsignedTypes",
"-Xuse-experimental=kotlin.time.ExperimentalTime"
"-Xuse-experimental=kotlin.time.ExperimentalTime",
"-XXLanguage:-NewInference"
]
}
}