Skip to content

Latest commit

 

History

History
30 lines (26 loc) · 567 Bytes

compiler-error-c3010.md

File metadata and controls

30 lines (26 loc) · 567 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Error C3010
Compiler Error C3010
11/04/2016
C3010
C3010
e959d038-bba6-432a-9c0a-0470474de7d9

Compiler Error C3010

'label' : jump out of OpenMP structured block not allowed

Code cannot jump into or out of an OpenMP block.

The following sample generates C3010:

// C3010.c
// compile with: /openmp
int main() {
   #pragma omp parallel
   {
      #pragma omp parallel
      {
         goto lbl3;
      }
   }
   lbl3:;   // C3010
}