Skip to content

Latest commit

 

History

History
27 lines (23 loc) · 516 Bytes

compiler-error-c3009.md

File metadata and controls

27 lines (23 loc) · 516 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Error C3009
Compiler Error C3009
11/04/2016
C3009
C3009
aded5985-f5fd-4c3e-a157-16be55ec1313

Compiler Error C3009

'label' : jump into OpenMP structured block not allowed

Code cannot jump into or out of an OpenMP block.

The following sample generates C3009:

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