NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Compiler Error C2094

label 'identifier' was undefined

The label used by a goto statement does not exist in the function. The following sample generates C2094:

void main() {
   goto test;

   // uncomment the following to resolve
   /*
   test: {
   }
   */
}