(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
analyzer/
vfunc-1.C
struct base
{
  virtual int fn () const;
};
struct sub : public base
{
  int fn () const;
};

int
test_1 (base *p)
{
  return p->fn ();
}