blob: 0b0b8e09ddee8551414cd81e7abb9980e4521b5d [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;
}
}