summaryrefslogtreecommitdiff
path: root/test/white.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/white.py')
-rw-r--r--test/white.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/white.py b/test/white.py
index cec90a9d..0c4bcb81 100644
--- a/test/white.py
+++ b/test/white.py
@@ -13,3 +13,19 @@ def f(self):
pass
else:
pass
+
+def g(x):
+ if x == 1:
+ a = 1
+ else:
+ a = 2
+
+g(1)
+
+def h(x):
+ if x == 1:
+ a = 1
+ else:
+ a = 2
+
+h(2)