break out switch at correct place
diff --git a/Python/ast.c b/Python/ast.c
index ef161b6..55faf97 100644
--- a/Python/ast.c
+++ b/Python/ast.c
@@ -822,8 +822,8 @@
                 }
 
                 res = Interactive(stmts, arena);
-                break;
             }
+            break;
         default:
             PyErr_Format(PyExc_SystemError,
                          "invalid node %d for PyAST_FromNode", TYPE(n));