Issue #83: Distinguish initializer lists from expression lists
diff --git a/z_test.py b/z_test.py
index 962c72c..cfaf17c 100644
--- a/z_test.py
+++ b/z_test.py
@@ -75,30 +75,10 @@
 
 
 if __name__ == "__main__":    
-    source_code = '''
-'''
-
-
-    #--------------- Lexing 
-    #~ def errfoo(msg, a, b):
-        #~ printme(msg)
-        #~ sys.exit()
-    #~ clex = CLexer(errfoo, lambda t: False)
-    #~ clex.build()
-    #~ clex.input(source_code)
-    
-    #~ while 1:
-        #~ tok = clex.token()
-        #~ if not tok: break
-            
-        #~ printme([tok.value, tok.type, tok.lineno, clex.filename, tok.lexpos])
-
-    #--------------- Parsing
     source_code = r'''
-    typedef int int8_t;
-    int boo, 8sd;
-    
-    
+    void main(void) {
+        i = (a, b);
+    }
     '''
 
     parser = CParser(lex_optimize=False, yacc_optimize=False, yacc_debug=True)