It is allowed to shadow the module identifier, leading to situations where it is unclear
what an IdentExp resolves to:
```d
module Test;
struct Test
{
static int a;
}
int a;
void main()
{
Test.a = 1; // actually not a FQN
}
```
Comment #1 by robert.schadek — 2024-12-13T19:34:22Z