On Wednesday, 14 November 2012 at 01:21:37 UTC, Adam D. Ruppe wrote:
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 */

Reply via email to