aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/ada/acats/support/macrodef.adb
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.9/gcc/testsuite/ada/acats/support/macrodef.adb')
-rw-r--r--gcc-4.9/gcc/testsuite/ada/acats/support/macrodef.adb11
1 files changed, 11 insertions, 0 deletions
diff --git a/gcc-4.9/gcc/testsuite/ada/acats/support/macrodef.adb b/gcc-4.9/gcc/testsuite/ada/acats/support/macrodef.adb
new file mode 100644
index 000000000..8a9087dc1
--- /dev/null
+++ b/gcc-4.9/gcc/testsuite/ada/acats/support/macrodef.adb
@@ -0,0 +1,11 @@
+with Ada.Text_IO;
+with System;
+procedure Macrodef is
+begin
+ Ada.Text_IO.Put_Line ("Integer'First = " & Integer'Image (Integer'First));
+ Ada.Text_IO.Put_Line ("Integer'Last = " & Integer'Image (Integer'Last));
+ Ada.Text_IO.Put_Line ("System.Min_Int = " & Long_Long_Integer'Image (System.Min_Int));
+ Ada.Text_IO.Put_Line ("System.Max_Int = " & Long_Long_Integer'Image (System.Max_Int));
+ Ada.Text_IO.Put_Line ("Ada.Text_IO.Count'Last = " & Ada.Text_IO.Count'Image (Ada.Text_IO.Count'Last));
+ Ada.Text_IO.Put_Line ("Ada.Text_IO.Field'Last = " & Ada.Text_IO.Field'Image (Ada.Text_IO.Field'Last));
+end Macrodef;