Commit 4dc0796f by Jerry DeLisle

intrinsic_count.f90: Fix array dimension to avoid correct end-of-file error.

 2005-08-29  Jerry DeLisle  <jvdelisle@verizon.net>

       * gfortran.fortran-torture/execute/intrinsic_count.f90:
       Fix array dimension to avoid correct end-of-file error.

From-SVN: r103626
parent f97e8c0f
2005-02-29 Thomas Koenig <Thomas.Koenig@online.de> 2005-08-29 Jerry DeLisle <jvdelisle@verizon.net>
* gfortran.fortran-torture/execute/intrinsic_count.f90:
Fix array dimension to avoid correct end-of-file error.
2005-08-29 Thomas Koenig <Thomas.Koenig@online.de>
PR libfortran/23598 PR libfortran/23598
* gfortran.dg/iostat_1.f90: New test. * gfortran.dg/iostat_1.f90: New test.
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
program intrinsic_count program intrinsic_count
implicit none implicit none
logical(kind=4), dimension (3, 5) :: a logical(kind=4), dimension (3, 5) :: a
integer(kind=4), dimension (5) :: b integer(kind=4), dimension (3) :: b
integer i integer i
character(len=10) line character(len=10) line
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment