(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
gomp/
declare-target-2.C
// { dg-do compile }
// { dg-options "-fopenmp" }

#pragma omp declare target
template <typename T>
struct S { T a; };
template <typename T>
struct U { T a; };
template <typename T>
struct V { T a; };
template <typename T>
struct W { T a; };

S<int> d;
U<long> e[10];
extern V<char> f[5];
extern W<short> g[];		// { dg-error "'g' in declare target directive does not have mappable type" }
#pragma omp end declare target