(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
fail_compilation/
fail74.d
/*
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;
    }
}