1/* PR middle-end/34694 */
2/* { dg-do compile } */
3/* { dg-options "-O -fopenmp -Wall" } */
4
5int i;
6
7void
8foo ()
9{
10#pragma omp parallel
11  {
12    int j;	/* { dg-message "note: 'j' was declared here" } */
13    i = j;	/* { dg-warning "is used uninitialized" } */
14  }
15}
16