commit | cad1cfde6f60288f427114be2800a5afa3ec2a62 | [log] [tgz] |
---|---|---|
author | eli.bendersky <devnull@localhost> | Thu May 26 06:56:27 2011 +0300 |
committer | eli.bendersky <devnull@localhost> | Thu May 26 06:56:27 2011 +0300 |
tree | ac2e58eb96ee0a846e33c5e6911a8f4588c599f9 | |
parent | 42b95e25fbe7b5d570cc087c92177c90621d3aa5 [diff] [blame] |
Fix issue 36: empty block in c-to-c
diff --git a/examples/tests/test_c-to-c.py b/examples/tests/test_c-to-c.py index 4cd13ba..eae0cce 100644 --- a/examples/tests/test_c-to-c.py +++ b/examples/tests/test_c-to-c.py
@@ -72,7 +72,11 @@ a = 5; return a; }''') - + + def test_issue36(self): + self._assert_ctoc_correct(r''' + int main() { + }''')