mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 17:09:38 +07:00
GitOrigin-RevId: cfe4d2ebbc7ff83f5d206ecc2569b3ba4b70a483
9 lines
132 B
Python
9 lines
132 B
Python
from __future__ import annotations
|
|
|
|
class B:
|
|
def f(self, a: A) -> None:
|
|
# <ref>
|
|
pass
|
|
|
|
class A:
|
|
pass |