'identifier1' : is not a member of 'identifier2'
The code incorrectly uses a nonmember of a structure or union. For example:
struct S { int mem0; } *pS; void main() { pS->mem1 = 0; // error, mem1 is not a member pS->mem0 = 0; // OK }