mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 23:51:37 +07:00
Merge-request: IJ-MR-153633 Merged-by: Daniil Kalinin <Daniil.Kalinin@jetbrains.com> GitOrigin-RevId: b304977e30eb4b378d858fcc5300846dc5965445
30 lines
323 B
Python
30 lines
323 B
Python
def foo(
|
|
a,
|
|
b,
|
|
c,
|
|
d
|
|
): pass
|
|
|
|
|
|
def foo1(
|
|
a: int,
|
|
b: int,
|
|
c: int,
|
|
d: int
|
|
): pass
|
|
|
|
|
|
def foo2(a: int,
|
|
b: int,
|
|
c: int,
|
|
d: int): pass
|
|
|
|
|
|
def foo3(
|
|
a: int, b: int,
|
|
c: int, d: int
|
|
): pass
|
|
|
|
|
|
def foo4(a, b, c, d
|
|
): pass |