Yes and No,enums are global and the Compiler dont know which member you mean.
If you have 2 enums with same member name you need a specific ident to the enum you want.
Here examples what i mean
Code:
e1[testA:C] = 10
e2[testB:C] = 20
console_print(0,"test:%d,%d",e1[testA:C],e2[testB:C])
__________________