view run/integer_literal_binary_06.d @ 1588:d20691fd37af

Move template_61_C from nocompile to run.
author Christian Kamm <kamm incasoftware de>
date Mon, 25 Aug 2008 21:56:28 +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;
}