view gcc/testsuite/c-c++-common/cilk-plus/AN/dimensionless-arrays.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

/* { dg-options "-fcilkplus" } */

extern int a[];
extern int *b;

void foo()
{
  a[:] = 5;	// { dg-error "start-index and length fields necessary for using array notation" }
  b[:] = 5;    // { dg-error "start-index and length fields necessary for using" }
}