view run/ptr_04.d @ 570:32f7f8ce5e51

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

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

module dstress.run.ptr_04;

int main(){
	Object[0] array;

	assert(!(array.ptr is null));

	return 0;
}