mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 08:00:18 +07:00
(cherry picked from commit ca5f003693960b25d78bda050b55fe39900be5a7) IJ-MR-169158 GitOrigin-RevId: 759cb38f76124b5b0709757e8f73ddffbf4a8248
11 lines
245 B
Python
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()
|
|
|
|
|