1 2 3 4 5 6 7 8 9 10 11 12
/* TEST_OUTPUT: --- fail_compilation/faildeleteaa.d(11): Error: cannot delete type int --- */ void main() { int[int] aa = [1 : 2]; delete aa[1]; }