(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.other/
syntax1.C
// { dg-do assemble  }
// { dg-options "-fsyntax-only" }
// Origin: Mark Mitchell <mark@codesourcery.com>

class AAA{
public:
  virtual void fff();
};

void AAA::fff() {}

AAA aaa;

int
main ()
{
  aaa.fff();
  return 0;
}