libadalang_tools_25.0.0_5304ba7e/testsuite/tests/test/153-floating-point-tgen/pkg.ads

1
2
3
4
5
6
7
with Ada.Numerics; use Ada.Numerics;

package Pkg is
   type Precision_6 is digits 6;
   subtype My_Float is Precision_6 range -Pi .. Pi;
   procedure Foo (P1 : My_Float);
end Pkg;