diff --git a/test/completion/goto.py b/test/completion/goto.py index 942cee7c..663c15d7 100644 --- a/test/completion/goto.py +++ b/test/completion/goto.py @@ -91,6 +91,11 @@ ClassVar.x = '' #! 12 ['x = 3'] ClassVar().x = '' +# Recurring use of the same var name, github #315 +def f(t=None): + #! 9 ['t=None'] + t = t or 1 + # ----------------- # imports # -----------------