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