comparison gcc/testsuite/ada/acats/support/macrodef.adb @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
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;