Mercurial > hg > CbC > CbC_gcc
view gcc/testsuite/gfortran.dg/assumed_charlen_in_main.f90 @ 145:1830386684a0
gcc-9.2.0
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 11:34:05 +0900 |
parents | 04ced10e8804 |
children |
line wrap: on
line source
! { dg-do compile } ! Tests the fix for PR28771 in which an assumed character length variable with an initializer could ! 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