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

Nick Treleaven <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #1 from Nick Treleaven <[email protected]> ---
template X() {}

It was decided that typeof(X) is void, that's in the spec. I'm not sure if the
type of a template instance is defined in the spec. A template instance seems
similar to a module. However `typeof(std.math)` is a compile error.

void fun()
{
    return X!();
}

Note: You are allowed to return an expression of type void, this is useful in
generic code.

--

Reply via email to