Fix bitbucket issue #9: incorrect C generation for ExprList in expr context.
diff --git a/z_test.py b/z_test.py
index cfaf17c..c1aab48 100644
--- a/z_test.py
+++ b/z_test.py
@@ -76,8 +76,10 @@
 
 if __name__ == "__main__":    
     source_code = r'''
+    typedef int foobar;
+    typedef int foobar;
     void main(void) {
-        i = (a, b);
+        foobar i;
     }
     '''