Mihai Voicescu
10/26/2021, 1:00 PMinterface IFoo {
@Suppress("DEPRECATION")
@RequiresOptIn(
level = RequiresOptIn.Level.ERROR,
message = "This API is DANGEROUS, internal and should not be used. It could be removed or changed without notice."
)
@Experimental(level = Experimental.Level.ERROR)
@Target(
AnnotationTarget.PROPERTY
)
annotation class DangerousInternalAPI
@DangerousInternalAPI
val internalState: MutableMap<KType, Any>
Marcus Brito
10/26/2021, 1:26 PMinternal
access modifier is forMihai Voicescu
10/26/2021, 1:35 PMMarcus Brito
10/26/2021, 1:49 PMMihai Voicescu
10/26/2021, 1:52 PMMarcus Brito
10/26/2021, 1:58 PM