view run/integer_literal_binary_03.d @ 28:17dbcb50e9a5

added binary and hexadecimal integer literal tests
author thomask
date Sat, 09 Oct 2004 15:07:01 +0000
parents
children f87ba6507260
line wrap: on
line source

int main(){
	assert( -0b101 == -5);
	return 0;
}