Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail75.d
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
;
}
}