basedmypy
basedmypy copied to clipboard
silent crash with generic bound to itself
from typing import TypeVar
Int = TypeVar("Int", bound=Int)
def f(i: Int): ...