re PR libfortran/25545 (internal file and dollar edit descriptor)

2006-11-05  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

	PR libgfortran/25545
	* gfortran.dg/dollar_edit_descriptor-2.f: New test.

From-SVN: r118507
This commit is contained in:
Jerry DeLisle 2006-11-05 17:40:42 +00:00
parent 97cd182da7
commit 25825b21a3
2 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2006-11-05 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR libgfortran/25545
* gfortran.dg/dollar_edit_descriptor-2.f: New test.
2006-11-05 Jakub Jelinek <jakub@redhat.com>
PR middle-end/29695

View File

@ -0,0 +1,9 @@
! { dg-do run }
! { dg-options "-w" }
! PR25545 internal file and dollar edit descriptor.
program main
character*20 line
line = '1234567890ABCDEFGHIJ'
write (line, '(A$)') 'asdf'
if (line.ne.'asdf') call abort()
end