blob: db66c0801758fe35d3fc6e0190417dd37cac1d04 [file] [log] [blame]
// PR middle-end/102492
// { dg-do compile }
struct S { S (int); };
void bar (S &);
void
foo ()
{
#pragma omp simd
for (int i = 0; i < 64; i++)
{
S s = 26;
bar (s);
}
}