comparison nocompile/d/delete_09_C.d @ 574:36e896c73c8a

undetected deprecated "delete" David L. Davis <SpottedTiger@yahoo.com> 2005-06-08 news:d87vbn$2tnm$1@digitaldaemon.com
author thomask
date Fri, 10 Jun 2005 19:10:21 +0000
parents
children 36bedfa079e6
comparison
equal deleted inserted replaced
573:56951036e398 574:36e896c73c8a
1 // $HeadURL$
2 // $Date$
3 // $Author$
4
5 // @author@ David L. Davis <SpottedTiger@yahoo.com>
6 // @date@ 2005-06-08
7 // @uri@ news:d87vbn$2tnm$1@digitaldaemon.com
8
9 // __DSTRESS_ELINE__ 16
10
11 module dstress.nocompile.d.delete_09_C;
12
13 typedef char[] string;
14
15 void test(string[int] arr, int key ){
16 delete arr[ key ];
17 }