Issue 37: c-to-c: sizeof arg parenthesizing
diff --git a/examples/tests/test_c-to-c.py b/examples/tests/test_c-to-c.py
index eae0cce..83cc099 100644
--- a/examples/tests/test_c-to-c.py
+++ b/examples/tests/test_c-to-c.py
@@ -78,6 +78,15 @@
             int main() {

             }''')

     

+    def test_issue37(self):

+        self._assert_ctoc_correct(r'''

+            int main(void)

+            {

+              unsigned size;

+              size = sizeof(size);

+              return 0;

+            }''')

+

         

 

 if __name__ == "__main__":