blob: 8ba0e65795fc1eaac37661f671c2e9b910a45fb8 [file] [log] [blame]
// PR c++/94512
void
foo ();
template <int>
void
bar ()
{
#pragma omp parallel master taskloop
foo (); // { dg-error "for statement expected before" }
}
void
baz ()
{
bar<0> ();
}