Handle empty ';' statements inside functions
diff --git a/tests/test_c_parser.py b/tests/test_c_parser.py
index 7e2ad2e..c868916 100644
--- a/tests/test_c_parser.py
+++ b/tests/test_c_parser.py
@@ -359,7 +359,7 @@
             {
                 int a = sizeof k;
                 int b = sizeof(int);
-                int c = sizeof(int**);
+                int c = sizeof(int**);;
                 
                 char* p = "just to make sure this parses w/o error...";
                 int d = sizeof(int());