OSDN Git Service

* gcc-interface/decl.c (gnat_to_gnu_entity): Create variables for size
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gnat.dg / specs / universal_fixed.ads
1 -- { dg-do compile }
2
3 package Universal_Fixed is
4     Nm2Metres : constant := 1852.0;
5     type Metres is delta 1.0 range 0.0 .. 1_000_000.0;
6     type Nautical_Miles is
7       delta 0.001 range 0.0 .. (Metres'Last + (Nm2Metres / 2)) / Nm2Metres;
8 end Universal_Fixed;