summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2009-08-22 15:12:15 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2009-08-22 15:12:15 +0200
commitdc7b8d2063dac867f2e87dbe764d2f3df2331e95 (patch)
treea1fbb118067bd285570082f171078a6699e22465 /tests
parent66455ad2d34c46650a798738c53bb550d250ab04 (diff)
Add support for long long int
Diffstat (limited to 'tests')
-rw-r--r--tests/parser/test-005.cli12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/parser/test-005.cli b/tests/parser/test-005.cli
index 9a43103..7798552 100644
--- a/tests/parser/test-005.cli
+++ b/tests/parser/test-005.cli
@@ -29,6 +29,18 @@ class c
char signed -i18;
unsigned char -i19;
char unsigned -i20;
+
+ long long -ll1;
+ long long int -ll2;
+ long long unsigned -ll3;
+ int long long -ll4;
+ unsigned long long -ll5;
+ long long int unsigned -ll6;
+ long long unsigned int -ll7;
+ unsigned long long int -ll8;
+ unsigned int long long -ll9;
+ int long long unsigned -ll10;
+ int unsigned long long -ll11;
double -d1;
long double -d2;