Issue 57: support for C99 hexadecimal float constants
diff --git a/tests/test_c_parser.py b/tests/test_c_parser.py
index e7b6c67..2284e98 100644
--- a/tests/test_c_parser.py
+++ b/tests/test_c_parser.py
@@ -923,6 +923,10 @@
         self.assertEqual(self.get_decl_init(d1),
             ['Constant', 'int', '16'])
         
+        d1_1 = 'float f = 0xEF.56p1;'
+        self.assertEqual(self.get_decl_init(d1_1),
+            ['Constant', 'float', '0xEF.56p1'])
+
         d2 = 'long ar[] = {7, 8, 9};'
         #~ self.parse(d2).show()
         self.assertEqual(self.get_decl(d2),