On 4/3/14, Walter Bright <newshou...@digitalmars.com> wrote:
> A possible enhancement would be to allow (for all templates with no
> parameters):
>
>      nspace.foo();

My only problem with this is how it will affect existing code. E.g.:

template take(alias templ) { }
template take(T) { }

template Empty() { struct Empty { } }

take!Empty;  // which overload of take is instantiated?

Reply via email to