summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/limited_with6_pkg.ads
blob: 4eab8682635b2480e31b042ffe46a0450cee2632 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
limited with Limited_With6;

package Limited_With6_Pkg is
  type T is limited private;
  function Get_Expression_Support (Obj : T) return Limited_With6.Sup_T with Inline;

  type Taft_Ptr is private;

private
  type T is new Integer;

  type TT;
  type Taft_Ptr is access TT;
end Limited_With6_Pkg;