MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / faildeleteaa.d
blobed640fb896c42395d9b5b3b653a94ad2ac8138b0
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/faildeleteaa.d(12): Error: the `delete` keyword is obsolete
5 fail_compilation/faildeleteaa.d(12): use `object.destroy()` (and `core.memory.GC.free()` if applicable) instead
6 ---
7 */
9 void main()
11 int[int] aa = [1 : 2];
12 delete aa[1];