1 /* PR middle-end/102415 */
2 
3 extern
4 #ifdef __cplusplus
5 "C"
6 #endif
7 void abort ();
8 
9 void
foo(void)10 foo (void)
11 {
12   #pragma omp scope nowait
13   abort ();
14 }
15 
16 void
bar(void)17 bar (void)
18 {
19   #pragma omp scope
20   abort ();
21 }
22