summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorElias Aebi <353-eyelash@users.noreply.gitlab.gnome.org>2021-12-05 15:51:02 +0100
committerChristian Hergert <christian@hergert.me>2021-12-07 21:14:40 +0000
commitf9a50d9be651e420da2fc926b9baa0580951e52e (patch)
treea95ff9e6d087cd977628adaca98f8a03e2c3f170 /tests
parentcf46c69d376f8b4d65c66976952521ced4658884 (diff)
downloadgtksourceview-f9a50d9be651e420da2fc926b9baa0580951e52e.tar.gz
c.lang: support hexadecimal floating constants
Diffstat (limited to 'tests')
-rw-r--r--tests/syntax-highlighting/file.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/syntax-highlighting/file.c b/tests/syntax-highlighting/file.c
index ed0bb82a..74769b74 100644
--- a/tests/syntax-highlighting/file.c
+++ b/tests/syntax-highlighting/file.c
@@ -8,6 +8,7 @@ int main (void)
int b = 089;
int c = 89.;
int d = 'a';
+ double hexadecimal_floating_constant = 0x1.2p3;
printf ("Hello %s!\n", "world");
return 0;
}