OSDN Git Service

2007-07-09 Thomas Koenig <tkoenig@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gnat.dg / ice_type.adb
1 -- { dg-do compile }
2
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;