view run/ptr_03.d @ 1618:87a6ab8f478d

Returns of non-void expressions are no longer valid in void functions.
author Christian Kamm <kamm incasoftware de>
date Sat, 07 Nov 2009 18:48:11 +0100
parents 32f7f8ce5e51
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;
}