comparison nocompile/ptr_05.d @ 570:32f7f8ce5e51

updated "===" -> "is" and "!==" to "!(...===...)"
author thomask
date Wed, 08 Jun 2005 17:49:15 +0000
parents f87ba6507260
children
comparison
equal deleted inserted replaced
569:15b52e26c8f4 570:32f7f8ce5e51
7 module dstress.nocompile.ptr_05; 7 module dstress.nocompile.ptr_05;
8 8
9 int main(){ 9 int main(){
10 Object[char[]] array; 10 Object[char[]] array;
11 11
12 assert(array.ptr === null); 12 assert(array.ptr is null);
13 13
14 return 0; 14 return 0;
15 } 15 }