1 parent 3acf836 commit 5fb6ef4Copy full SHA for 5fb6ef4
1 file changed
test.cpp
@@ -2374,6 +2374,12 @@ static void ifIntegerLiteral()
2374
{
2375
testIfIntegerLiteral("123", "123", false);
2376
testIfIntegerLiteral("-123", "-123", false);
2377
+ testIfIntegerLiteral("123", "123Z", false);
2378
+ testIfIntegerLiteral("123", "123UL", false);
2379
+ testIfIntegerLiteral("-123", "-123LL", false);
2380
+ testIfIntegerLiteral("123", "123z", false);
2381
+ testIfIntegerLiteral("123", "123ul", false);
2382
+ testIfIntegerLiteral("-123", "-123ll", false);
2383
2384
testIfIntegerLiteral("123", "0x7b", false);
2385
testIfIntegerLiteral("-123", "-0x7b", false);
0 commit comments