Compiler Error C2159
more than one storage class specified
A declaration contains more than one storage class.
The following sample generates C2159:
// C2159.cpp
// compile with: /c
static int i; // OK
extern static int i; // C2159
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
more than one storage class specified
A declaration contains more than one storage class.
The following sample generates C2159:
// C2159.cpp
// compile with: /c
static int i; // OK
extern static int i; // C2159