OSlash icon indicating copy to clipboard operation
OSlash copied to clipboard

TypeAlias with Generic ABCs

Open suned opened this issue 8 years ago • 1 comments

type checking the follow program with mypy:

from oslash import List

IntList = List[int]

def f() -> IntList:
     return List.unit(0)

Yields error: Invalid type "StrList".

suned avatar Oct 27 '17 15:10 suned