alloc_comp_constraint_5.f90

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

F90
19
字号
! { dg-do compile }! Check that ALLOCATABLE components aren't allowed to the right of a non-zero! rank part reference.program test    implicit none    type :: foo        real, allocatable :: bar(:)    end type foo    type(foo), target :: x(3)    integer :: i    real, pointer :: p(:)    allocate(x(:)%bar(5))! { dg-error "must not have the ALLOCATABLE attribute" }    x(:)%bar(1) = 1.0    ! { dg-error "must not have the ALLOCATABLE attribute" }    p => x(:)%bar(1)     ! { dg-error "must not have the ALLOCATABLE attribute" }end program test

⌨️ 快捷键说明

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