mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
(cherry picked from commit f4b52fc04911cc80b05fc155485fa5aafcd70bf4) GitOrigin-RevId: 76b3859ef35485c1704d9d12419fae927a3989c6
5 lines
173 B
Python
5 lines
173 B
Python
import b
|
|
<warning descr="'a' is 'Final' and cannot be reassigned">b.a</warning> = 2
|
|
|
|
from b import a
|
|
<warning descr="'a' is 'Final' and cannot be reassigned">a</warning> = 3 |