view run/sizeof_11.d @ 1607:1bbcc6407d4b

Update module statement for renamed tests.
author Christian Kamm <kamm incasoftware de>
date Mon, 13 Apr 2009 13:48:46 +0200
parents a3cb1d622f37
children
line wrap: on
line source

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

module dstress.run.sizeof_11;

int main(){
	size_t sizeof;
	sizeof++;
	assert(sizeof==1);
	sizeof-=9;
	assert(sizeof==-8);
	return 0;
}