Just saw something like this in a codebase: ```res %%private let x = 42 ``` This usage of `%%private` is allowed by the parser/compiler, but has no effect at all. What the author actually meant was ```res %%private(let x = 42) ``` Therefore, the usage without a "body" should cause a compiler error IMHO.