basedmypy icon indicating copy to clipboard operation
basedmypy copied to clipboard

silent crash with generic bound to itself

Open KotlinIsland opened this issue 1 year ago • 0 comments

from typing import TypeVar

Int = TypeVar("Int", bound=Int)


def f(i: Int): ...

KotlinIsland avatar Jan 04 '24 06:01 KotlinIsland