Closed
Description
from typing import TypeVar, Callable
S = TypeVar('S')
def apply(f: Callable[[int], S]) -> S: pass
def g(x: int) -> S: pass
y = apply(g)
reveal_type(y) # E: Revealed type is 'S`-1'
The type of y
is not allowed to contain an unbound type variable. There should have been an error Need type annotation for variable
on the assignment to y
.
(With apply
having type def apply(f: Callable[[int], int]) -> S
, mypy does give such an error.)
Metadata
Metadata
Assignees
Labels
Projects
Milestone
Relationships
Development
No branches or pull requests
Activity
[-]type variable escapes in application of higher-order function[/-][+]type variable escapes in application of higher-order function to a generic function[/+]rwbarton commentedon May 8, 2016
Also, even when the input program has a type error, mypy should still not produce ill-formed types like
S
-1` here. That way we can run mypy in a mode with extra consistency checks on the test suite, which is full of intentional type errors, to find more bugs like this one.erictraut commentedon Aug 10, 2023
Mypy is arguably doing the right thing in this case. The code sample contains a malformed generic function
g
that returns a genericS
but doesn't useS
in the types of any input parameters. Mypy correctly reports this error.