From: pault Date: Wed, 28 Oct 2015 19:28:54 +0000 (+0000) Subject: 2015-01-28 Paul Thomas X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ba4b83b6ea8388e807f41781777f8e596c7496d9;p=thirdparty%2Fgcc.git 2015-01-28 Paul Thomas 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 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 5ca99b01eee0..05cad86be445 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2015-01-28 Paul Thomas + + PR fortran/67933 + * gfortran.dg/allocate_with_source_15.f03: Correct trivial + array bounds error at line 25. + 2015-10-28 Catherine Moore * gcc.target/mips/oddspreg-3.c: Disable for MIPS16. diff --git a/gcc/testsuite/gfortran.dg/allocate_with_source_15.f03 b/gcc/testsuite/gfortran.dg/allocate_with_source_15.f03 index 38f9cec355c0..f939aa3d9dfb 100644 --- a/gcc/testsuite/gfortran.dg/allocate_with_source_15.f03 +++ b/gcc/testsuite/gfortran.dg/allocate_with_source_15.f03 @@ -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