]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
2015-01-28 Paul Thomas <pault@gcc.gnu.org>
authorpault <pault@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 28 Oct 2015 19:28:54 +0000 (19:28 +0000)
committerpault <pault@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 28 Oct 2015 19:28:54 +0000 (19:28 +0000)
PR fortran/67933
* gfortran.dg/allocate_with_source_15.f03: Correct trivial
array bounds error at line 25.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@229503 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/allocate_with_source_15.f03

index 5ca99b01eee0a9d3b3ae9b9877323662234cfc9c..05cad86be4455e7fb3f2e5e3b5265d1ce6e06d89 100644 (file)
@@ -1,3 +1,9 @@
+2015-01-28  Paul Thomas  <pault@gcc.gnu.org>
+
+       PR fortran/67933
+       * gfortran.dg/allocate_with_source_15.f03: Correct trivial
+       array bounds error at line 25.
+
 2015-10-28  Catherine Moore  <clm@codesourcery.com>
 
        * gcc.target/mips/oddspreg-3.c: Disable for MIPS16.
index 38f9cec355c0add41d80870b352ebdf1a6b0a825..f939aa3d9dfba58e612875a071a192ab1e37ef27 100644 (file)
@@ -22,7 +22,7 @@ module test_mod
   end type wrapper_t
 
   type :: list_t
-    type(wrapper_t) :: classes(10)
+    type(wrapper_t) :: classes(20)
   contains
     procedure :: Method
     procedure :: Typeme