2008-05-30 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / gcc / testsuite / gnat.dg / ancestor_type.adb
blobb5e9e2c5c1d8c827486c490a4ab7cf59cc9ac70e
1 -- { dg-do compile }
3 package body Ancestor_Type is
5 package body B is
6 function make return T is
7 begin
8 return (T with n => 0); -- { dg-error "expect ancestor" }
9 end make;
11 end B;
13 end Ancestor_Type;