This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug fortran/31818] Wrongly accepts namelists with assumed-shape arrays
- From: "dfranke at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 27 Jul 2007 20:27:42 -0000
- Subject: [Bug fortran/31818] Wrongly accepts namelists with assumed-shape arrays
- References: <bug-31818-13404@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #5 from dfranke at gcc dot gnu dot org 2007-07-27 20:27 -------
Try this testcase instead ...
subroutine test(cha)
implicit none
character(len=10) :: cha(1:) ! added lower-bound
namelist /z/ cha
end subroutine test
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31818