This is using DMD 2.053 on win7.
struct S(int N) {
immutable SN = N;
// Using N instead, and the compiler doesn't hang
// It doesn't have anything to do with alias. The same occurs in
method templates etc.
alias S!SN T;
}
void main() {
S!(4) s;
}
