1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail75.d(13): Error: cannot append type fail75.C to type C[1]
5 ---
6 */
7 
8 class C
9 {
10     C[1] c;
this()11     this()
12     {
13         c ~= this;
14     }
15 }
16