view run/integer_literal_binary_06.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 2ab8decdc8a0
children
line wrap: on
line source

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

module dstress.run.integer_literal_binary_06;

int main(){
	assert( 0b101uL == 5);
	assert( 0b101uL.sizeof == ulong.sizeof);
	assert( 0b101uL.min == ulong.min);
	assert( 0b101uL.max == ulong.max);
	return 0;
}