pyright
pyright copied to clipboard
Pyright hangs when a generic type alias definition refers to itself via typevar bound
Code or Screenshots
type Foo[T: Foo] = T
def func[T](x: Foo[T]) -> T: ...