1 // RUN: %clang_cc1 -verify -fopenmp -ferror-limit 100  %s
2 
foo2()3 void foo2() {
4   int a;
5   #pragma omp target // expected-note 4 {{'target' previously encountered here}}
6   {
7     a = a + 1;
8   }
9 }
10 
11 #pragma omp requires atomic_default_mem_order(seq_cst)
12 #pragma omp requires unified_address //expected-error {{'target' region encountered before requires directive with 'unified_address' clause}}
13 #pragma omp requires unified_shared_memory //expected-error {{'target' region encountered before requires directive with 'unified_shared_memory' clause}}
14 #pragma omp requires reverse_offload //expected-error {{'target' region encountered before requires directive with 'reverse_offload' clause}}
15 #pragma omp requires dynamic_allocators //expected-error {{'target' region encountered before requires directive with 'dynamic_allocators' clause}}
16