Unlike a lot of NEON instructions, vext isn't _actually_ parameterized by element...
[oota-llvm.git] / test / FrontendAda / Support / 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;