view nocompile/integer_literal_dec_01.d @ 70:5f98d4a33d49

1) review of all test cases with unexpected results (except encoding and html/xml) 2) updated todo
author thomask
date Sat, 23 Oct 2004 22:47:47 +0000
parents 3f81e192da0e
children f87ba6507260
line wrap: on
line source

module dstress.nocompile.integer_literal_dec_01;

int main(){
	long l = 9_223_372_036_854_775_808; // long.max+1
	return 0;
}