view nocompile/integer_literal_dec_02.d @ 33:3f81e192da0e

extended integer literal tests
author thomask
date Wed, 13 Oct 2004 07:18:13 +0000
parents
children f87ba6507260
line wrap: on
line source

int main(){
	int i = 2_147_483_648; // int.max+1
	return 0;
}