]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/c-c++-common/cilk-plus/AN/fn_ptr-2.c
[Patch AArch64] Fixup floating point division with -march=armv8-a+nosimd
[thirdparty/gcc.git] / gcc / testsuite / c-c++-common / cilk-plus / AN / fn_ptr-2.c
1 /* { dg-do compile } */
2 /* { dg-options "-fcilkplus" } */
3
4 typedef void (*f) (void *);
5 f b[1024];
6 void *c[1024][1024];
7
8 int
9 main (void)
10 {
11 (b[:]) (c[:][:]); /* { dg-error "rank mismatch" "" { xfail *-*-* } } */
12 return 0;
13 }
14