Re: Can't seemed to get parent name from a class at compile time.

2017-12-15 Thread Adam D. Ruppe via Digitalmars-d-learn
On Friday, 15 December 2017 at 17:16:41 UTC, 12345swordy wrote: Am I doing this right? I am expecting it to print "bob". parent gets the container of the symbol (in this case, the module), not the inheritance list. You probably want BaseClassesTuple!tom[0] instead, which is the class it inh

Can't seemed to get parent name from a class at compile time.

2017-12-15 Thread 12345swordy via Digitalmars-d-learn
import std.stdio; class bob { } class tom : bob { } void main() { writeln(__traits(identifier,__traits(parent,tom))); } Am I doing this right? I am expecting it to print "bob".