blob: 26587dc7e5ab51ab688ebaea2b90cbf432dfe47f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/*
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[]++;
}
|