summaryrefslogtreecommitdiff
path: root/tests/gold/annotate
diff options
context:
space:
mode:
Diffstat (limited to 'tests/gold/annotate')
-rw-r--r--tests/gold/annotate/mae/mae.py,cover10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/gold/annotate/mae/mae.py,cover b/tests/gold/annotate/mae/mae.py,cover
new file mode 100644
index 00000000..ca086e93
--- /dev/null
+++ b/tests/gold/annotate/mae/mae.py,cover
@@ -0,0 +1,10 @@
+> def f(x):
+> if x == 1:
+> print("1")
+> else:
+> print("2")
+
+> if f(1):
+! print("nope")
+> if f(2):
+! print("nope")