blob: 1059e36bd62c46f3ebe46c76f246a0ee0f7e6f32 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail75.d(13): Error: cannot append type fail75.C to type C[1]
---
*/
class C
{
C[1] c;
this()
{
c ~= this;
}
}