view nocompile/integer_literal_binary_09.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(){
	int a = 0b101h;
	return 0;
}