summaryrefslogtreecommitdiff
path: root/tests/syntax-highlighting/file.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/syntax-highlighting/file.c')
-rw-r--r--tests/syntax-highlighting/file.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/syntax-highlighting/file.c b/tests/syntax-highlighting/file.c
index 74769b74..5ec5c0fe 100644
--- a/tests/syntax-highlighting/file.c
+++ b/tests/syntax-highlighting/file.c
@@ -8,6 +8,13 @@ int main (void)
int b = 089;
int c = 89.;
int d = 'a';
+
+ int a = 0b0101U;
+ int c = 0b0101L;
+ int d = 0B0101L;
+ int b = 0b201u;
+ int b = 0B061u;
+
double hexadecimal_floating_constant = 0x1.2p3;
printf ("Hello %s!\n", "world");
return 0;