1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
# Test cases for tuple expressions where the parser recovers from a syntax error. (,) (1,,2) (1,,) # Missing comma (1 2) # Dictionary element in a list (1: 2) # Missing expression (1, x + ) (1; 2) # Unparenthesized named expression is not allowed x, y := 2, z