mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 13:35:58 +07:00
GitOrigin-RevId: b16fffe886d350a54434adb57519eb9c1992e217
8 lines
136 B
Python
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
|