1  /* PR preprocessor/57824 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-std=gnu99 -fopenmp" { target c } } */
       4  /* { dg-options "-std=c++11 -fopenmp" { target c++ } } */
       5  
       6  void bar ();
       7  
       8  void foo ()
       9  {
      10  #pragma omp parallel num_threads(sizeof R"(
      11  abc
      12  )")
      13    bar ();
      14  }