unexpected #else
The #else directive appears outside an #if, #ifdef, or #ifndef construct. Use #if only within one of these constructs. The following sample generates C1019:
// uncomment the line below to resolve the error // #if 1 #else // C1019 #endif void main() { }