aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/analyzer/data-model-12.c
blob: 653b7ad628464158aed6eaeb258b80666bbc8bdb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Mismatching decl of foo.  */

int foo ();

int bar (void)
{
  return foo() + 1;
}

int foo (int x, int y)
{
  return x * y;
}