C1040: No valid :: classname specified

[ERROR]

Description

The specified identifier after a scope resolution was not a class, struct, or union.

Example
  class B {

  
    class A {

  
    };

  
  };

  
  class C : B::AA {  // AA is not valid

  
  };

  
Tips

Use an identifier of an already declared class, struct, or union.