commit | 9cd79b32c9c3ccb31630e2c6b9fa328571f4ec46 | [log] [tgz] |
---|---|---|
author | Eli Bendersky <eliben@gmail.com> | Sat Jun 08 07:03:34 2013 -0700 |
committer | Eli Bendersky <eliben@gmail.com> | Sat Jun 08 07:03:34 2013 -0700 |
tree | abffb21e2ab6ee3be2f18ff8682d81df3bb975a2 | |
parent | 0f204aae3e460fce98b026f34983a533730292fb [diff] [blame] |
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; } '''