Add some manual test files for two quick fixes.

This commit is contained in:
con
2010-07-09 16:01:34 +02:00
parent b4cecd6ec8
commit 009ea5cdfa
2 changed files with 77 additions and 0 deletions
@@ -0,0 +1,21 @@
int main()
{
// standard case
199;
074;
0x856A;
// with type specifier
199L;
074L;
0xFA0Bu;
// uppercase X
0X856A;
// negativ values
-199;
-017;
// not integer, do nothing
298.3;
// ignore invalid octal
0783;
0; // border case, only hex<->decimal
}