Enable experimental API (CancellationException) in ObjC export tests

(cherry picked from commit 2e4d907a93de7c599889a81da0d66dc19ba68ef7)
This commit is contained in:
Ilya Matveev
2020-07-06 16:54:06 +07:00
committed by Vasily Levchenko
parent 43877a504c
commit f85da287e6
+2 -1
View File
@@ -4177,7 +4177,7 @@ if (isAppleTarget(project)) {
framework(frameworkName) {
sources = ['objcexport']
library = libraryName
opts = ["-Xemit-lazy-objc-header=$lazyHeader"]
opts = ["-Xemit-lazy-objc-header=$lazyHeader", "-Xopt-in=kotlin.ExperimentalStdlibApi"]
}
swiftSources = ['objcexport']
}
@@ -4208,6 +4208,7 @@ if (isAppleTarget(project)) {
artifact = frameworkArtifactName
library = libraryName
isStatic = true
opts = ['-Xstatic-framework', "-Xopt-in=kotlin.ExperimentalStdlibApi"]
}
swiftSources = ['objcexport']
}