libdparse
libdparse copied to clipboard
TemplateMixin allowed in function bodies
this is allowed by dparse:
void main()
{
mixin template MT() {int a;}
mixin MT!() a;
}
but it is illegal by the official grammar.