Loosen @NativeRuntimeApi opt-in requirement level to WARNING

This commit is contained in:
Abduqodiri Qurbonzoda
2023-04-02 02:51:41 +00:00
parent ab78b44d2e
commit f90b846f86
@@ -18,7 +18,7 @@ import kotlin.annotation.AnnotationTarget.*
* annotating that usage with the [OptIn] annotation, e.g. `@OptIn(NativeRuntimeApi::class)`,
* or by using the compiler argument `-opt-in=kotlin.native.runtime.NativeRuntimeApi`.
*/
@RequiresOptIn(level = RequiresOptIn.Level.ERROR)
@RequiresOptIn(level = RequiresOptIn.Level.WARNING)
@Retention(AnnotationRetention.BINARY)
@Target(
CLASS,