summaryrefslogtreecommitdiff
path: root/test/regression/expr3.c
blob: 9b696e5dd849bdf32748bcaf1da1a3693dde84ed (plain)
1
2
3
4
5
6
7
/* Array decay in && */

struct s {
  int a[1];
};

int f(struct s * x) { return x && x->a; }