re PR fortran/85579 (accepts invalid fortran test case gfortran.dg/pr51434.f90)

2018-05-03  Richard Biener  <rguenther@suse.de>

	PR testsuite/85579
	* fortran.dg/pr51434.f90: Truncate transfer argument.

From-SVN: r259880
This commit is contained in:
Richard Biener 2018-05-03 07:33:09 +00:00 committed by Richard Biener
parent 5cf052826f
commit c2901468a9
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2018-05-03 Richard Biener <rguenther@suse.de>
PR testsuite/85579
* fortran.dg/pr51434.f90: Truncate transfer argument.
2018-05-02 Jakub Jelinek <jakub@redhat.com>
PR target/85582

View File

@ -6,7 +6,7 @@ module foo
character(len=1), parameter :: s(n) = 'a'
type :: a
integer :: m = n
character(len=1):: t(n) = transfer('abcde ', s)
character(len=1):: t(n) = transfer('abcde', s)
end type a
end module foo