diff --git a/test/completion/functions.py b/test/completion/functions.py index 387b8b0d..bb00efb3 100644 --- a/test/completion/functions.py +++ b/test/completion/functions.py @@ -46,6 +46,15 @@ def multi_line_func(a, # comment blabla #? str() multi_line_func(1,'') +# nothing after comma +def asdf(a): + return a + +x = asdf(a=1, + ) +#? int() +x + # ----------------- # double execution # -----------------