summaryrefslogtreecommitdiff
path: root/gcc/testsuite/c-c++-common/gomp/pr81006.c
blob: a826c5f5a5395edfd43319eaaa3ae1de55f5b4ff (plain)
1
2
3
4
5
6
7
8
9
10
/* PR c/81006 */
/* { dg-do compile } */

int a[] = {};

void foo()
{
  #pragma omp task depend(out: a[:])	/* { dg-error "zero length array section in .depend. clause" } */
    {}
}