1*0a6a1f1dSLionel Sambuc // RUN: %clang_cc1 -verify -fopenmp=libiomp5 -ferror-limit 100 -o - %s 2f4a2713aSLionel Sambuc 3f4a2713aSLionel Sambuc #pragma omp // expected-error {{expected an OpenMP directive}} 4f4a2713aSLionel Sambuc #pragma omp unknown_directive // expected-error {{expected an OpenMP directive}} 5f4a2713aSLionel Sambuc foo()6f4a2713aSLionel Sambucvoid foo() { 7f4a2713aSLionel Sambuc #pragma omp // expected-error {{expected an OpenMP directive}} 8f4a2713aSLionel Sambuc #pragma omp unknown_directive // expected-error {{expected an OpenMP directive}} 9f4a2713aSLionel Sambuc } 10