Files
openide/python/testData/resolve/MethodParameterAnnotationForwardReferenceBefore314WithFromFutureImportAnnotations.py

9 lines
132 B
Python

from __future__ import annotations
class B:
def f(self, a: A) -> None:
# <ref>
pass
class A:
pass