Is there a similar annotation to `@VisibleForTesti...
# announcements
a
Is there a similar annotation to
@VisibleForTesting
for this situation
I want to mark a method private, but I want to inline it too
s
@PublishedApi
, maybe?
👌 1
👨‍🍳 1
That doesn't work for private, but it does work for internal
a
that works out great!
l
You can also use a private experimental annotation to prevent usage in the same module (and annotate your public inline function with UseExperimental)