llvm-project/clang/test/OpenMP/openmp_check.cpp
Alexey Bataev 1d97d2a3d2 [OPENMP] Fix for http://llvm.org/PR25221: Infinite loop while parsing OpenMP directive
Clang skipped annot_pragma_openmp token, while it should be considered as a stop token while skipping tokens.

llvm-svn: 250684
2015-10-19 06:40:17 +00:00

16 lines
545 B
C++

// RUN: %clang_cc1 -verify -fopenmp -ferror-limit 100 %s
int nested(int a) {
#pragma omp parallel
++a;
auto F = [&]() { // expected-error {{expected expression}} expected-error {{expected ';' at end of declaration}} expected-warning {{'auto' type specifier is a C++11 extension}}
#pragma omp parallel
{
#pragma omp target
++a;
}
};
F(); // expected-error {{C++ requires a type specifier for all declarations}}
return a; // expected-error {{expected unqualified-id}}
}// expected-error {{extraneous closing brace ('}')}}