comparison run/sort_02.d @ 570:32f7f8ce5e51

updated "===" -> "is" and "!==" to "!(...===...)"
author thomask
date Wed, 08 Jun 2005 17:49:15 +0000
parents 1197cba57329
children
comparison
equal deleted inserted replaced
569:15b52e26c8f4 570:32f7f8ce5e51
34 assert(b[4]==1); 34 assert(b[4]==1);
35 assert(b[5]==byte.max-1); 35 assert(b[5]==byte.max-1);
36 assert(b[6]==byte.max); 36 assert(b[6]==byte.max);
37 37
38 assert(&a != &b); 38 assert(&a != &b);
39 assert(a.ptr === b.ptr); 39 assert(a.ptr is b.ptr);
40 40
41 return 0; 41 return 0;
42 } 42 }