view run/long_01.d @ 1630:d0efa3ae5522 default tip

run/mini/naked_asm5: New x86_64 ABI passes the arguments in reverse order.
author David Nadlinger <code@klickverbot.at>
date Sat, 23 Apr 2011 22:57:32 +0200
parents 80e1b85295b3
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; 
}