C1049: Members cannot be extern

[ERROR]

Description

Class member cannot have the storage class extern.

Example
  class A {

  
    extern int f();

  
  };

  
Tips

Remove the extern specifier.