/* This tests exactly 1 erroneous case from bug1997, to ensure they EACH get a warning */ #include "upc.h" static int matmultI(shared [] double *x) { return 0; } int main( int argc, char **argv ) { shared double *x1 = 0; matmultI(x1); return 0; }