mirror of
https://github.com/opnsense/src.git
synced 2026-04-09 19:37:37 -04:00
8 lines
255 B
C++
8 lines
255 B
C++
// RUN: %clang_cc1 -verify -fopenmp %s
|
|
void f(int a, ...) {
|
|
#pragma omp parallel for
|
|
for (int i = 0; i < 100; ++i) {
|
|
__builtin_va_list ap;
|
|
__builtin_va_start(ap, a); // expected-error {{'va_start' cannot be used in a captured statement}}
|
|
}
|
|
};
|