view run/ptr_03.d @ 570:32f7f8ce5e51

updated "===" -> "is" and "!==" to "!(...===...)"
author thomask
date Wed, 08 Jun 2005 17:49:15 +0000
parents 1a77f6d93b45
children
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

module dstress.run.ptr_03;

int main(){
	Object[] array;
	array.length=0;

	assert(array.ptr is null);

	return 0;
}