Files
openide/python/testData/inspections/PyUnboundLocalVariableInspection/ForwardReferenceInAnnotationsWithFromFutureImportAnnotationsBefore314.py
2025-09-16 17:00:01 +00:00

8 lines
136 B
Python

from __future__ import annotations
def f(a: A): # Should not produce "Name 'A' can be not defined" warning
pass
class A:
pass