what is the difference between these two annotatio...
# getting-started
d
what is the difference between these two annotations? @OptIn(ExperimentalCoroutinesApi::*class*) @ExperimentalCoroutinesApi
e
@ExperimentalCoroutinesApi
(and other
@RequiresOptIn
annotations) propagates to callers,
@OptIn
doesn't
d
thanks!