From 2b948ba267791978cf92f10e6c62734385260698 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sat, 27 Sep 2014 00:27:30 +0800 Subject: [PATCH] test/py2llvm: test continue statement --- test/py2llvm.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/py2llvm.py b/test/py2llvm.py index b957032a5..e149329b9 100644 --- a/test/py2llvm.py +++ b/test/py2llvm.py @@ -181,6 +181,8 @@ def array_test(): acc = 0 for i in range(5): for j in range(5): + if i + j == 2: + continue acc += a[i][j] return acc