Bug? Should a local enum take precedence over a module?

I have this code, and it doesn't work in SDK 8.1.0:

The problem is that it thinks that Menu is WatchUi.Menu.

This causes a compilation error (at least with typecheck set to strict) because I want to assign something that is not an Action to action. This is relatively OK, though IMHO it shouldn't happen.

It also causes an unexpected behavior when running (of course it needs some changes so it compiles, or disabling typecheck):

In the switch action will never be equal to Menu (again because an Action is never equal to a module or class.

The workaround is to replace Menu with self.Menu. However I think this is a bug, and the compiler should have found the local Menu before it looks for the more remote WatchUi.Menu.

Should I open a bug report, or am I mistaken and this is how it's supposed to work?