Commit 2c855398 by Tobias Schlüter Committed by Tobias Schlüter

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

From-SVN: r88096
parent f34fa464
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.
......
......@@ -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)
......
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