view run/__TIMESTAMP__01.d @ 303:1013f6410987

added __DATE__, __FILE__, __LINE__, __TIMESTAMP__ and __TIME tests
author thomask
date Sat, 12 Mar 2005 13:49:58 +0000
parents
children
line wrap: on
line source

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

module dstress.run.__TIMESTAMP__01;

int main(){
	assert(__TIMESTAMP__.length==24);
	assert(__TIMESTAMP__[3]==' ');
	assert(__TIMESTAMP__[7]==' ');
	assert(__TIMESTAMP__[10]==' ');
	assert(__TIMESTAMP__[19]==' ');
	return 0;
}