Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail6611.d
blob: 26587dc7e5ab51ab688ebaea2b90cbf432dfe47f [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/fail6611.d(11): Error: cannot post-increment array slice `x[]`, use pre-increment instead
---
*/
void
main
()
{
auto
x
=
new
int
[](
10
);
x
[]++;
}