mirror of
https://github.com/mtshiba/pylyzer.git
synced 2025-07-07 17:45:00 +00:00
13 lines
197 B
Python
13 lines
197 B
Python
import typing
|
|
|
|
x: typing.Any
|
|
|
|
def f(x: int, y: int) -> int: ...
|
|
|
|
class C:
|
|
x: int
|
|
y: int
|
|
def __init__(self, x: int): ...
|
|
def f(self, x: int) -> int: ...
|
|
|
|
def g[T: C](x: T) -> T: ...
|