1 // Issue 402 - compiler crash with mixin and forward reference
2 
Foo(alias b)3 template Foo(alias b)
4 {
5     int a() { return b; }
6 }
7 
main()8 void main()
9 {
10     mixin Foo!(y) y;
11 }
12