* gfortran.dg/pr15324.f90: Make array bounds consistent.

From-SVN: r88096
This commit is contained in:
Tobias Schlüter 2004-09-25 14:50:02 +02:00 committed by Tobias Schlüter
parent f34fa464bb
commit 2c85539856
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2004-09-25 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de>
* gfortran.dg/pr15324.f90: Make array bounds consistent.
2004-09-25 Jan Hubicka <jh@suse.cz>
* compile/30040909-1.c: New test.

View File

@ -4,7 +4,7 @@
program strarray_6
character(5), dimension(:), allocatable :: c
n = 3
allocate(c(-1:n-1))
allocate(c(-1:n-2))
c = "BLUBB"
call foo(c)
call bar(c,n)