Comment #0 by enjouzensyou.boinc — 2012-12-10T06:47:51Z
If you compile example code, compile does not end.
Example:
---
//NG. Compile does not end.
bool b = is(typeof(
{
mixin("alias template A(){} B;");
}));
/*
//OK. Compile end. Of cause, if compile this code, you fail to compile.
alias typeof(
{
mixin("alias template A(){} B;");
}) Test;
//OK. Compile end. Of cause, if compile this code, you fail to compile.
mixin("alias template A(){} B;");
*/
---