<br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Thanks for the hint, this now works:<br>
<br>
bool listMembers(T)()<br>
{<br>
    static if (is(T P == super))<br>
        static if(P.length > 0)<br>
            listMembers!(P[0])();<br>
                <br>
    alias typeof(T.tupleof) TTypes;<br></blockquote><div><br></div><div>I don't get this. T is a type, right? So what does T.tupleof do? Shouldn't that be `typeof(T.init.tupleof)`?</div><div><br></div><div><br></div>
</div>