Requires Opt In
annotation class RequiresOptIn(val message: String = "", val level: RequiresOptIn.Level = Level.ERROR)(source)
Signals that the annotated annotation class is a marker of an API that requires an explicit opt-in.
Call sites of any declaration annotated with that marker should opt in to the API either by using OptIn, or by being annotated with that marker themselves, effectively causing further propagation of the opt-in requirement.
This class requires opt-in itself and can only be used with the compiler argument -Xopt-in=kotlin.RequiresOptIn
.
Since Kotlin
1.3Constructors
Types
Link copied to clipboard
Severity of the diagnostic that should be reported on usages which did not explicitly opted into the API either by using OptIn or by being annotated with the corresponding marker annotation.