empty_type.f90

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

F90
20
字号
! { dg-do compile }! PR fortran/34202! ICE on contruction of empty types! Testcase contributed by Tobias Burnusprogram bug4a  implicit none  type bug4    ! Intentionally left empty  end type bug4  type compound    type(bug4) b  end type compound  type(bug4), parameter :: f = bug4()  type(compound), parameter :: g = compound(bug4())end program bug4a

⌨️ 快捷键说明

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