We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Just saw something like this in a codebase:
%%private let x = 42
This usage of %%private is allowed by the parser/compiler, but has no effect at all.
%%private
What the author actually meant was
%%private(let x = 42)
Therefore, the usage without a "body" should cause a compiler error IMHO.