view run/__FILE__01.d @ 1627:e1b954780837

undo accidental changes
author Moritz Warning <moritzwarning@web.de>
date Thu, 06 Jan 2011 16:03:25 +0100
parents 1013f6410987
children
line wrap: on
line source

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

module dstress.run.__FILE__01;

int main(){
	char[] c = __FILE__;
	version(Windows){
		assert(c==r"run\__FILE__01.d");
	}else{
		assert(c==r"run/__FILE__01.d");
	}
	return 0;
}