Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.dg
/
gomp
/
pr85134.C
blob: 01f5574fcc7a87b99c9f28ca935fb05bd4f775c8 [
file
] [
log
] [
blame
]
// PR c++/85134
// { dg-do compile }
// { dg-options "-std=c++14 -fopenmp" }
void
foo
(
int
i
)
{
constexpr
int
x
[
i
]
=
{};
// { dg-error "17:'constexpr' variable 'x' has variably-modified type" }
#pragma
omp parallel shared
(
x
)
;
}