alloc_comp_constraint_1.f90

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

F90
23
字号
! { dg-do compile }! Check that we don't allow IO or NAMELISTs with types with allocatable! components (PR 20541)program main    type :: foo        integer, allocatable :: x(:)    end type foo    type :: bar        type(foo) :: x    end type bar    type(foo) :: a    type(bar) :: b    namelist /blah/ a ! { dg-error "cannot have ALLOCATABLE components" }    write (*, *) a  ! { dg-error "cannot have ALLOCATABLE components" }    read (*, *) b  ! { dg-error "cannot have ALLOCATABLE components" }end program main

⌨️ 快捷键说明

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