I have implemented a cache for functions:
@experimental
class cached extends MacroAnnotation:
But when I tried to add @cached
to old functions, I have to add @experimental to my whole project becasue of the following compiler error:
class cached is marked @experimental and therefore may only be used in an experimental scope.
It there any compiler flags that allow us to skip the @experimental check?