SDC-32bit

Dicebot via Digitalmars-d-announce digitalmars-d-announce at puremagic.com
Tue Aug 5 10:02:27 PDT 2014


On Tuesday, 5 August 2014 at 16:54:47 UTC, Stefan Koch wrote:
>> I'm not sure what you mean.   Are you referring to things like 
>> pragma msg?
>
> to things like mixin("mixin(`writeln ("Hello World");`");

```
bool foo() { ... }

template bar(bool cond)
{
     static if (cond)
         enum bar = "int a;";
     else
         enum bar = "int b;";
}

mixin(bar!(foo()));

pragma(msg, is(typeof(a)));
```

Good luck doing parallel semantic analysis :D I am sure deadalnix 
can give example much worse than that though.


More information about the Digitalmars-d-announce mailing list