Bug 6967 – template instantiation depends an pragma(msg, T.stringof) if __traits is used
Status
RESOLVED
Resolution
INVALID
Severity
normal
Priority
P2
Component
dmd
Product
D
Version
D2
Platform
Other
OS
Linux
Creation time
2011-11-17T09:41:00Z
Last change time
2012-12-12T22:20:23Z
Assigned to
nobody
Creator
tobias
Comments
Comment #0 by tobias — 2011-11-17T09:41:24Z
From a thread in d.learn: http://www.digitalmars.com/d/archives/digitalmars/D/learn/Strange_behaviour_in_templates_Another_bug_30591.html
I'm trying to learn template meta programming in D. To do this, I'm working
on a meta state machine like Boost.MSM
(http://www.boost.org/doc/libs/1_47_0/libs/msm/doc/HTML/index.html).
States are types and can have sub states. If they do, they need to have
an attribut 'SubStates', which should be a TypeTuble with the
sub states.
The task at hand is: Given a State and a list of all States, create
a list of all parents of State including State itself.
This code (http://paste.pocoo.org/show/506154/) ought to do this
and it works sometimes.
You can make to interesting observations of this code:
In its current form, 'dmd test.d -unittest' will print: "
> false
But if you uncomment the first pragma() in the unittest block,
it will print
> ()
> true
If you change the body of ParentsDesc to
> alias TypeTuple!() Result;
it will also print
> true
Although the static if in ParentsDesc is never true in this
example.