OSDN Git Service

2006-08-23 Paul Thomas <pault@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.dg / assumed_charlen_in_main.f90
index a29bdb9..f4bb701 100644 (file)
@@ -3,11 +3,25 @@
 ! survive in the main program without causing an error.
 !
 ! Contributed by Martin Reinecke  <martin@mpa-garching.mpg.de>
-!
+! Modified to test fix of regression reported by P.Schaffnit@access.rwth-aachen.de
+
+subroutine poobar ()
+  ! The regression caused an ICE here
+  CHARACTER ( LEN = * ), PARAMETER ::   Markers(5) = (/ "Error ", &
+      &                                                 "Fehler", &
+      &                                                 "Erreur", &
+      &                                                 "Stop  ", &
+      &                                                 "Arret "  /)
+  character(6) :: recepteur (5)
+  recepteur = Markers
+end subroutine poobar
+
+! If the regression persisted, the compilation would stop before getting here
 program test
   character(len=*), parameter :: foo = 'test'     ! Parameters must work.
   character(len=4) :: bar = foo
   character(len=*) :: foobar = 'This should fail' ! {  dg-error "must be a dummy" }
   print *, bar
+  call poobar ()
 end