annotate 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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
28
17dbcb50e9a5 added binary and hexadecimal integer literal tests
thomask
parents:
diff changeset
1 int main(){
17dbcb50e9a5 added binary and hexadecimal integer literal tests
thomask
parents:
diff changeset
2 int a = 0b101h;
17dbcb50e9a5 added binary and hexadecimal integer literal tests
thomask
parents:
diff changeset
3 return 0;
17dbcb50e9a5 added binary and hexadecimal integer literal tests
thomask
parents:
diff changeset
4 }