URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.dg/] [assumed_charlen_in_main.f90] - Rev 302
Compare with Previous | Blame | View Log
! { 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.desubroutine poobar ()! The regression caused an ICE hereCHARACTER ( LEN = * ), PARAMETER :: Markers(5) = (/ "Error ", && "Fehler", && "Erreur", && "Stop ", && "Arret " /)character(6) :: recepteur (5)recepteur = Markersend subroutine poobar! If the regression persisted, the compilation would stop before getting hereprogram testcharacter(len=*), parameter :: foo = 'test' ! Parameters must work.character(len=4) :: bar = foocharacter(len=*) :: foobar = 'This should fail' ! { dg-error "must be a dummy" }print *, barcall poobar ()end
