aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gnat.dg/specs/universal_fixed.ads
blob: e54ce278c94360369299d0820772626e1df79473 (plain)
1
2
3
4
5
6
7
8
-- { dg-do compile }

package Universal_Fixed is
    Nm2Metres : constant := 1852.0;
    type Metres is delta 1.0 range 0.0 .. 1_000_000.0;
    type Nautical_Miles is
      delta 0.001 range 0.0 .. (Metres'Last + (Nm2Metres / 2)) / Nm2Metres;
end Universal_Fixed;