Files
Mikhail Golubevandintellij-monorepo-bot fd4360b032 PY-75831 tests for split cache(resolve/type) into library and user part
(cherry picked from commit ca5f003693960b25d78bda050b55fe39900be5a7)

IJ-MR-169158

GitOrigin-RevId: 759cb38f76124b5b0709757e8f73ddffbf4a8248
2025-07-28 08:06:50 +00:00

11 lines
245 B
Python

from lib import not_annotated_func_returning_str
x = not_annotated_func_returning_str()
def expects_int(p: int) -> None:
pass
expects_int(x) # should have no error, because we infer Any for not_annotated_func_returning_str()