aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/analyzer/pr94579.c
blob: 0ab88c2efb55200e3bce745a992bbb941f276921 (plain)
1
2
3
4
5
6
7
8
9
10
11
struct a *c;
struct a {
  int b;
} d() {
}

void e()

{
  *c = d();
}