aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gnat.dg/interface_conv.adb
blob: 503fb7eaa3d0469f5e4ab13bc000693e6840f28d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
-- { dg-do run }

procedure Interface_Conv is
   package Pkg is
      type I1 is interface;
      procedure Prim (X : I1) is null;
      type I2 is interface;
      procedure Prim (X : I2) is null;
      type DT is new I1 and I2 with null record;
   end Pkg;
   use Pkg;
   Obj  : DT;
   CW_3 : I2'Class := Obj;
   CW_5 : I1'Class := I1'Class (CW_3);  --  test
begin
   null;
end;