C1085: <ident> is not a member

[ERROR]

Description

A nonmember of a structure or union was incorrectly used.

Example
  struct A {

  
    int i;

  
  };

  
  void main() {

  
    A a;

  
    a.r=3;  // error

  
  }

  
Tips

Using . or ->, specify a declared member.