aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr71362.c
blob: fd9cd6a20d65b35ee942fd05eb33b4ea212a87ad (plain)
1
2
3
4
5
6
7
8
9
10
/* PR c/71362 */
/* { dg-do compile } */

extern void foo (int[-1]); /* { dg-error "21:size of unnamed array is negative" } */

int
bar (void)
{
  123 + sizeof (int[-1]); /* { dg-error "20:size of unnamed array is negative" } */
}