Sign in
◑
Theme
llvm
/
llvm-project.git
/
refs/heads/main
/
.
/
clang
/
test
/
OpenMP
/
gh214195.cpp
blob: 3247922412bebe30b6977a20ebbe3a8763d0fba7 [
file
] [
edit
]
// RUN: %clang_cc1 %s -verify -fopenmp
struct
Type
{
void
foo
()
{
#pragma
omp parallel
private
(
bar
})
// expected-error@-1{{use of undeclared identifier 'bar'}}
// expected-error@+1{{expected statement}}
}
};