mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
14 lines
135 B
Python
14 lines
135 B
Python
import typing
|
|
|
|
|
|
@typing.overload
|
|
def foo(p: int) -> int:
|
|
pass
|
|
|
|
|
|
@typing.overload
|
|
def foo(p: str) -> str:
|
|
pass
|
|
|
|
|
|
<the_ref>foo(1) |