(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
other/
dump-ada-spec-3.C
/* { dg-do compile } */
/* { dg-options "-fdump-ada-spec" } */

using namespace std;

class Base {
   public:
     int My_V;
     virtual void Primitive ();

     Base ();
};

void Base::Primitive () {
}

Base::Base () {
}

void Dispatch (Base * B) {
  B->Primitive ();
}

/* { dg-final { cleanup-ada-spec } } */