This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug fortran/31217] ICE using FORALL on character substrings
- 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: 22 Jul 2007 17:16:01 -0000
- Subject: [Bug fortran/31217] ICE using FORALL on character substrings
- References: <bug-31217-6642@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #3 from dfranke at gcc dot gnu dot org 2007-07-22 17:16 -------
Another of the kind string vs. array of character. This works without hitch:
character :: a(1) = (/ "1" /)
forall(i=1:1) a(i:i) = a(i:i)
end
--
dfranke at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |dfranke at gcc dot gnu dot
| |org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31217