MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail6611.d
blob26587dc7e5ab51ab688ebaea2b90cbf432dfe47f
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail6611.d(11): Error: cannot post-increment array slice `x[]`, use pre-increment instead
5 ---
6 */
8 void main()
10 auto x = new int[](10);
11 x[]++;