()
| 730 | ### simple_stmt: small_stmt (';' small_stmt)* [';'] |
| 731 | x = 1; pass; del x |
| 732 | def foo(): |
| 733 | # verify statements that end with semi-colons |
| 734 | x = 1; pass; del x; |
| 735 | foo() |
| 736 | |
| 737 | ### small_stmt: expr_stmt | pass_stmt | del_stmt | flow_stmt | import_stmt | global_stmt | access_stmt |