assumed_charlen_in_main.f90

来自「用于进行gcc测试」· F90 代码 · 共 28 行

F90
28
字号
! { 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 here  CHARACTER ( 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 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

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?