aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/Waddress.c
blob: b26e7b1f3294710bef15d9982d5cb1638ab92592 (plain)
1
2
3
4
5
6
7
8
9
10
/* PR c/36299 */
/* { dg-do compile } */
/* { dg-options "-Waddress" } */

int
foo(void)
{
  char a[1];
  return a == 0;    // { dg-warning "-Waddress" }
}