mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-19 14:21:27 +07:00
9 lines
103 B
Python
9 lines
103 B
Python
def foo(*args):
|
|
pass
|
|
|
|
a = ()
|
|
b = ()
|
|
foo(*a, <warning descr="Duplicate *arg">*<caret>b</warning>)
|
|
|
|
|