mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 23:46:49 +07:00
8 lines
209 B
Python
8 lines
209 B
Python
from enum import auto, Enum
|
|
from my_enum_base import MyEnumBase
|
|
|
|
|
|
class MyEnumDerived(MyEnumBase):
|
|
FOO = auto()
|
|
BAR = <warning descr="Type 'int' is not assignable to declared type 'MyVal'">2</warning>
|