derived_recursion.f90
来自「用于进行gcc测试」· F90 代码 · 共 27 行
F90
27 行
! { dg-do compile }! { dg-options "-O0" }! Tests patch for PR24158 - The module would compile, in spite! of the recursion between the derived types. This would cause! an ICE in the commented out main program. The standard demands! that derived type components be already defined, to break! recursive derived type definitions.!! Contributed by Paul Thomas <pault@gcc.gnu.org>!module snafu type :: a integer :: v type(b) :: i ! { dg-error "not been previously defined" } end type a type :: b type(a) :: i end type b type (a) :: fooend module snafu! use snafu! foo%v = 1! end! { dg-final { cleanup-modules "snafu" } }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?