2008-05-30 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / gcc / testsuite / gnat.dg / incomplete2.ads
blob21f2d2bb1bd3a2f3adf01bb21079524f7ccc84e5
1 limited with Incomplete1;
2 package Incomplete2 is
3 pragma Elaborate_Body;
4 generic
5 type T is private;
6 package G is end G;
7 package I1 is new G (Incomplete1.T); -- { dg-error "premature use" }
8 end Incomplete2;