Fix a bunch of issues found in a testcase from 400.perlbench.
[oota-llvm.git] / test / FrontendAda / fat_fields.ads
1 package Fat_Fields is
2    pragma Elaborate_Body;
3    type A is array (Positive range <>) of Boolean;
4    type A_Ptr is access A;
5    P : A_Ptr := null;
6 end;