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

Adam D. Ruppe destructionator at gmail.com
Fri Dec 15 18:00:49 UTC 2017


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 inherits from. import std.traits for that.

http://dpldocs.info/experimental-docs/std.traits.BaseClassesTuple.html


More information about the Digitalmars-d-learn mailing list