Sign in
gnu
/
gcc
/
trunk
/
.
/
libgomp
/
testsuite
/
libgomp.c++
/
pr106445-1.C
blob: 329ce62eb7b2d88c3f64289c4bce48f5579b6274 [
file
] [
log
] [
blame
]
#include
<vector>
int
main
()
{
#pragma
omp target
{
{
std
::
vector
<int>
v
;
if
(!
v
.
empty
())
__builtin_abort
();
}
{
std
::
vector
<int>
v
(
100
);
if
(
v
.
capacity
()
<
100
)
__builtin_abort
();
}
}
}