[K/N] OptIn ExperimentalNativeApi in perf suite
diff --git a/kotlin-native/performance/ring/src/main/kotlin/org/jetbrains/ring/BunnymarkBenchmark.kt b/kotlin-native/performance/ring/src/main/kotlin/org/jetbrains/ring/BunnymarkBenchmark.kt
index 05a3a84..6dc978d 100644
--- a/kotlin-native/performance/ring/src/main/kotlin/org/jetbrains/ring/BunnymarkBenchmark.kt
+++ b/kotlin-native/performance/ring/src/main/kotlin/org/jetbrains/ring/BunnymarkBenchmark.kt
@@ -2,6 +2,7 @@
* Copyright 2010-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license
* that can be found in the LICENSE file.
*/
+@file:OptIn(kotlin.experimental.ExperimentalNativeApi::class)
package org.jetbrains.ring
diff --git a/kotlin-native/performance/ring/src/main/kotlin/org/jetbrains/ring/LifeBenchmark.kt b/kotlin-native/performance/ring/src/main/kotlin/org/jetbrains/ring/LifeBenchmark.kt
index d8c67b4..fd915b6 100644
--- a/kotlin-native/performance/ring/src/main/kotlin/org/jetbrains/ring/LifeBenchmark.kt
+++ b/kotlin-native/performance/ring/src/main/kotlin/org/jetbrains/ring/LifeBenchmark.kt
@@ -1,3 +1,5 @@
+@file:OptIn(kotlin.experimental.ExperimentalNativeApi::class)
+
package org.jetbrains.ring
import kotlin.native.concurrent.*
diff --git a/kotlin-native/performance/ring/src/main/kotlin/org/jetbrains/ring/WeakRefBenchmark.kt b/kotlin-native/performance/ring/src/main/kotlin/org/jetbrains/ring/WeakRefBenchmark.kt
index b22bee9..24b4084 100644
--- a/kotlin-native/performance/ring/src/main/kotlin/org/jetbrains/ring/WeakRefBenchmark.kt
+++ b/kotlin-native/performance/ring/src/main/kotlin/org/jetbrains/ring/WeakRefBenchmark.kt
@@ -2,7 +2,7 @@
* Copyright 2010-2022 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license
* that can be found in the LICENSE file.
*/
-@file:OptIn(kotlinx.cinterop.ExperimentalForeignApi::class)
+@file:OptIn(kotlinx.cinterop.ExperimentalForeignApi::class, kotlin.experimental.ExperimentalNativeApi::class)
package org.jetbrains.ring
diff --git a/kotlin-native/performance/shared/src/main/kotlin-native/common/org/jetbrains/benchmarksLauncher/Utils.kt b/kotlin-native/performance/shared/src/main/kotlin-native/common/org/jetbrains/benchmarksLauncher/Utils.kt
index 69b6f79..8ecf0b8 100644
--- a/kotlin-native/performance/shared/src/main/kotlin-native/common/org/jetbrains/benchmarksLauncher/Utils.kt
+++ b/kotlin-native/performance/shared/src/main/kotlin-native/common/org/jetbrains/benchmarksLauncher/Utils.kt
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-@file:OptIn(kotlinx.cinterop.ExperimentalForeignApi::class)
+@file:OptIn(kotlinx.cinterop.ExperimentalForeignApi::class, kotlin.experimental.ExperimentalNativeApi::class)
package org.jetbrains.benchmarksLauncher