Here is my C program:
struct ComplexStruct
{
int integerMember;
float floatMember;
char stringMember[128];
};
int main()
{
struct ComplexStruct csObj1;
struct ComplexStruct csObj2;
return 0;
}
when I type "csObj1." after the csObj2 declaration, the code-completion pull-down list didn't appear. But if I remove the "struct" keyword from "struct ComplexStruct csObj1;", every thing is OK.
Is it a bug of code-completion?