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:
parent
97cd182da7
commit
25825b21a3
|
@ -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
|
||||
|
|
|
@ -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
|
Loading…
Reference in New Issue