aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/analyzer/fd-connect-pr107928.c
blob: f3bdc87c210a7154778557611bfbe3e84b194497 (plain)
1
2
3
4
5
6
7
8
9
10
struct sa {};

int
connect (int, struct sa *, int);

int
foo (struct sa sa)
{
  return connect (1, &sa, sizeof sa);
}