I'm seeing a problem where attempting to find references on the subfield of a pointer to an array is not recognized as a symbol. Below is a snippet that shows the problem described.
struct structure
{
uint32_t a;
uint32_t b;
};
struct structure (*test)[2];
(*test)[0].a;
When attempting to Find References on the field of a, an error pops up indicating that the symbol isn't recognized.