tmp8.d:
-------
template Foo() {
template blah() {
alias x blah;
}
static int x;
}
struct Bar {
mixin Foo mix;
}
void main() {
typeof(Bar.blah!()) a; // error
typeof(Bar.x) b; // ok
}
compile error:
--------------
tmp8.d(13): template blah!() is not a member of Bar