This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCSTUDIO: CCSTUDIO failed to parse the members in nested structure

Part Number: CCSTUDIO

Hi, Dear Expert

I defined a structure like this:

typedef struct{

int x;

int y;

} TYPE_A;

typedef struct{

TYPE_A a;

}TYPE_B;

later when I implement an instance in a c file like this

TYPE_B b={

.a={

.x = 1,

.y = 2,

},

};

Then the CCSTUDIO IDE told me the Symbol 'x' can not be resolved when I hover the cursor on to the .x. similar information would be shown when the cursor hovered to .y.

However when I build the files, the build can still pass.

Looks like there is something wrong with the IDE, can you prompt me which setting could be related to such issue?