PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gnat.dg / ice_type.adb
blobcac09fc30681fba7bdc4a57e951ab9a63e393fc9
1 -- { dg-do compile }
3 with ICE_Types; use ICE_Types;
4 procedure ICE_Type is
5 type Local_Float_T is new Float_View_T;
6 LF : Local_Float_T;
7 begin
8 Initialize (Float_View_T (LF));
9 end;