www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 14067] New: template parameters of enum type in DDoc are broken

https://issues.dlang.org/show_bug.cgi?id=14067

          Issue ID: 14067
           Summary: template parameters of enum type in DDoc are broken
           Product: D
           Version: D2
          Hardware: All
                OS: All
            Status: NEW
          Keywords: ddoc
          Severity: normal
          Priority: P1
         Component: DMD
          Assignee: nobody puremagic.com
          Reporter: sinkuupump gmail.com


enum E { a }

void fun(E e)()
{
}

///
alias FA = fun!(E.a);

struct S(E e) {}

///
alias SA = S!(E.a);

// stringof property
static assert(S!(E.a).stringof == "S!(E.a)"); // fail - stringof is
"S!cast(E)0"



alias FA = fun!cast(E)0.fun;
alias SA = S!cast(E)0.S;


Expected result is "fun!(E.a).fun". At least it should be "fun!(cast(E)0).fun"

std.experimental.logger documentation is broken due to this bug.


alias trace =
defaultLogFunction!cast(LogLevel)cast(ubyte)32u.defaultLogFunction( /* ... */
);

--
Jan 28 2015