Daily bump.
[gcc.git] / gcc / testsuite / g++.dg / other / dump-ada-spec-9.C
blob6387c81a25b50913d2cb76fcd44a855bf79b9436
1 /* { dg-do compile } */
2 /* { dg-options "-fdump-ada-spec" } */
4 class Base {
5   public:
6      virtual void Primitive ();
8 };
10 void Base::Primitive () {
14 void Dispatch (Base * B) {
15   B->Primitive ();
18 /* { dg-final { scan-ada-spec-not "CPP_Constructor" } } */
19 /* { dg-final { cleanup-ada-spec } } */