dlang-community / libdparse

Library for lexing and parsing D source code
https://libdparse.dlang.io
Boost Software License 1.0
114 stars 56 forks source link

TemplateMixin allowed in function bodies #419

Open ghost opened 4 years ago

ghost commented 4 years ago

this is allowed by dparse:

void main()
{
    mixin template MT() {int a;}
    mixin MT!() a;
}

but it is illegal by the official grammar.