defined_type_2.f90

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

F90
18
字号
!This used to ICE as we chose the wrong type for the! temporary to hold type%x! fortran/18157MODULE bug  IMPLICIT NONE  TYPE :: my_type    REAL :: x  END TYPE  TYPE (my_type), DIMENSION(3) :: t  CONTAINS    SUBROUTINE foo    INTEGER, DIMENSION(8)        :: c(3)    t(c)%x = t(c)%x    RETURN   END SUBROUTINE foo END MODULE bug  

⌨️ 快捷键说明

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