2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / ada / acats / support / macrodef.adb
blob8a9087dc1dd35a739ecefefa3a53a3b2fffd1935
1 with Ada.Text_IO;
2 with System;
3 procedure Macrodef is
4 begin
5 Ada.Text_IO.Put_Line ("Integer'First = " & Integer'Image (Integer'First));
6 Ada.Text_IO.Put_Line ("Integer'Last = " & Integer'Image (Integer'Last));
7 Ada.Text_IO.Put_Line ("System.Min_Int = " & Long_Long_Integer'Image (System.Min_Int));
8 Ada.Text_IO.Put_Line ("System.Max_Int = " & Long_Long_Integer'Image (System.Max_Int));
9 Ada.Text_IO.Put_Line ("Ada.Text_IO.Count'Last = " & Ada.Text_IO.Count'Image (Ada.Text_IO.Count'Last));
10 Ada.Text_IO.Put_Line ("Ada.Text_IO.Field'Last = " & Ada.Text_IO.Field'Image (Ada.Text_IO.Field'Last));
11 end Macrodef;