view run/long_01.d @ 958:80e1b85295b3

DMD-0.154 review
author thomask
date Thu, 13 Apr 2006 07:34:32 +0000
parents f87ba6507260
children
line wrap: on
line source

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

module dstress.run.long_01;

int main(){
	long a;
	static assert(a.max == 0x7FFF_FFFF_FFFF_FFFFL);
	static assert(a.min == 0x8000_0000_0000_0000L);
	static assert(a.init == 0);
	static assert(a.sizeof == 8);
	return 0; 
}