* gnat.dg/pr35823.adb: Rename to size_attribute.adb.
From-SVN: r133946
+2008-04-05 Eric Botcazou <ebotcazou@adacore.com>
+
+ * gnat.dg/pr35823.adb: Rename to size_attribute.adb.
+
2008-04-05 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR fortran/25829 28655
+++ /dev/null
-procedure pr35823 (Arg : in String) is
- Size : constant Natural := Arg'Size;
-begin
- null;
-end pr35823;
-
--- /dev/null
+-- PR middle-end/35823
+-- { dg-do compile ]
+
+procedure Size_Attribute (Arg : in String) is
+ Size : constant Natural := Arg'Size;
+begin
+ null;
+end;