summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr64423.c
blob: c228acb05a395bd20feaf05270e365965471245a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* PR c/64423 */
/* { dg-do compile } */
/* { dg-options "-Wchar-subscripts" } */

int a[100];

int
f (char c)
{
  return a[c]		/* { dg-warning "11:array subscript has type .char." } */
          + a[c]	/* { dg-warning "14:array subscript has type .char." } */
            + a[c];	/* { dg-warning "16:array subscript has type .char." } */
}