Compiler Error C2636
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at Compiler Error C2636.
identifier' : pointer to reference member is illegal
A pointer to a reference member was declared.
The following sample generates C2636:
// C2636.cpp
struct S {};
int main() {
int &S::*prs; // C2636
int S::*prs1; // OK
int *S::*prs2; // OK
}
Show: