summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/interface9_root.ads
blob: 2e64e5b42c57cfa38bc34e61640171046cac54df (plain)
1
2
3
4
5
6
7
8
9
10
generic
   type Real is digits <>;
package Interface9_Root is
   type Base_Interface is limited interface;

   procedure Primitive1 (B : in out Base_Interface) is abstract;
   procedure Primitive2 (B : in out Base_Interface) is null;

   type Derived_Interface is limited interface and Base_Interface;
end Interface9_Root;