From ce49d20a5fe3726e1800bc495a25c7617212abf4 Mon Sep 17 00:00:00 2001 From: Emanuele Grasso <96300448+L0P0P@users.noreply.github.com> Date: Sun, 14 Jul 2024 18:48:09 +0200 Subject: Reaching definition analysis (#17) Co-authored-by: Santo Cariotti Co-authored-by: geno Co-authored-by: geno --- test/2d.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 test/2d.py (limited to 'test/2d.py') diff --git a/test/2d.py b/test/2d.py new file mode 100644 index 0000000..a418aab --- /dev/null +++ b/test/2d.py @@ -0,0 +1,13 @@ +n = 2 +y = 7 +c = 0 +while y > 0: + g = 2 * n + c = y * n + g + y = y - 1 + +y = 5 +for i in range(y): + g = 2 * y + c = c + i + g +print(g) -- cgit v1.2.3-18-g5258