testsuite: fix c23-constexpr-2a.c test to use dg-do run
[official-gcc.git] / gcc / testsuite / gnat.dg / specs / cpp1.ads
blob1f759b7a9a18b19a25ce48a6b9a19aa51084764c
1 -- { dg-do compile }
3 package cpp1 is
4 type Root_Interface is interface;
6 type Typ is new Root_Interface with record
7 TOTO : Integer;
8 pragma CPP_Vtable (TOTO);
9 end record;
10 end cpp1;