blob: 3260ac7d52ecad96ccdc62ae364a80b8f70e8410 [file] [log] [blame]
/* PR middle-end/66633 */
/* { dg-do compile } */
/* { dg-options "-fopenmp -O1" } */
void baz (int (*) ());
void
foo (void)
{
int i;
auto int bar (void) { return i; }
#pragma omp parallel
baz (bar);
}