view run/ptr_04.d @ 1270:660f9196b52a

partial review
author thomask
date Sat, 23 Dec 2006 12:58:47 +0000
parents 32f7f8ce5e51
children
line wrap: on
line source

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

module dstress.run.ptr_04;

int main(){
	Object[0] array;

	if(!(array.ptr is null)){
		assert(0);
	}

	return 0;
}