re PR fortran/67933 (ICE for array of a derived type with allocatable class in derived type object)

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.

From-SVN: r229503
This commit is contained in:
Paul Thomas 2015-10-28 19:28:54 +00:00
parent a3320d62af
commit 4839652517
2 changed files with 7 additions and 1 deletions

View 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.

View 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