* gnat.dg/opt78.ad[sb]: New test.
authorEric Botcazou <ebotcazou@adacore.com>
Thu, 23 May 2019 09:48:24 +0000 (09:48 +0000)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Thu, 23 May 2019 09:48:24 +0000 (09:48 +0000)
From-SVN: r271545

gcc/testsuite/ChangeLog
gcc/testsuite/gnat.dg/opt78.adb [new file with mode: 0644]
gcc/testsuite/gnat.dg/opt78.ads [new file with mode: 0644]

index 6f8567c809e39291c2a4ccc4b4e77194d96ed516..e422d71bdfe1abb79d2249bda56f57c06aad281a 100644 (file)
@@ -1,3 +1,7 @@
+2019-05-23  Eric Botcazou  <ebotcazou@adacore.com>
+
+       * gnat.dg/opt78.ad[sb]: New test.
+
 2019-05-23  Iain Sandoe  <iain@sandoe.co.uk>
 
        PR rtl-optimisation/64895
diff --git a/gcc/testsuite/gnat.dg/opt78.adb b/gcc/testsuite/gnat.dg/opt78.adb
new file mode 100644 (file)
index 0000000..e46c92b
--- /dev/null
@@ -0,0 +1,16 @@
+-- { dg-do compile }
+-- { dg-options "-O" }
+
+package body Opt78 is
+
+   procedure Proc (P : UC; Msg : String) is
+      Default : UC := (1, "!");
+   begin
+      if P = Default then
+         raise Program_Error;
+      else
+         raise Constraint_Error;
+      end if;
+   end;
+
+end Opt78;
diff --git a/gcc/testsuite/gnat.dg/opt78.ads b/gcc/testsuite/gnat.dg/opt78.ads
new file mode 100644 (file)
index 0000000..2c489bd
--- /dev/null
@@ -0,0 +1,13 @@
+package Opt78 is
+
+   subtype Reasonable is Integer range 1..10;
+
+   type UC (D: Reasonable := 2) is record
+      S: String (1 .. D) := "Hi";
+   end record;
+
+   type AUC is access all UC;
+
+   procedure Proc (P : UC; Msg : String);
+
+end Opt78;