The name follows normal D rules, but the behavior for a specific name is compiler magic.
BTW by this I mean fully qualified names.
import core.attributes;@inline void foo(); /* core.attributes.inline is the magical name */
module custom; enum inline; @inline void foo(); /* custom.inline is not magical */