blob: 690e89a27d78587650b168ebc4bc22ffb3893820 [file] [log] [blame]
/* { 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" }
}