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

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 with Ada.Text_IO;
kono
parents:
diff changeset
2 with System;
kono
parents:
diff changeset
3 procedure Macrodef is
kono
parents:
diff changeset
4 begin
kono
parents:
diff changeset
5 Ada.Text_IO.Put_Line ("Integer'First = " & Integer'Image (Integer'First));
kono
parents:
diff changeset
6 Ada.Text_IO.Put_Line ("Integer'Last = " & Integer'Image (Integer'Last));
kono
parents:
diff changeset
7 Ada.Text_IO.Put_Line ("System.Min_Int = " & Long_Long_Integer'Image (System.Min_Int));
kono
parents:
diff changeset
8 Ada.Text_IO.Put_Line ("System.Max_Int = " & Long_Long_Integer'Image (System.Max_Int));
kono
parents:
diff changeset
9 Ada.Text_IO.Put_Line ("Ada.Text_IO.Count'Last = " & Ada.Text_IO.Count'Image (Ada.Text_IO.Count'Last));
kono
parents:
diff changeset
10 Ada.Text_IO.Put_Line ("Ada.Text_IO.Field'Last = " & Ada.Text_IO.Field'Image (Ada.Text_IO.Field'Last));
kono
parents:
diff changeset
11 end Macrodef;