derived_constructor_comps_2.f90
来自「用于进行gcc测试」· F90 代码 · 共 28 行
F90
28 行
! { dg-do compile }! Tests fix for PR29115, in which an ICE would be produced by ! non-pointer elements being supplied to the pointer components! in a derived type constructor.!! Contributed by Paul Thomas <pault@gcc.gnu.org>! type :: homer integer, pointer :: bart(:) end type homer type(homer) :: marge integer :: duff_beer marge = homer (duff_beer) ! { dg-error "should be a POINTER or a TARGET" }end!! The following yield an ICE, see PR 34083!subroutine foo type ByteType character(len=1) :: singleByte end type type (ByteType) :: bytes(4) print *, size(bytes) bytes = ByteType((/'H', 'i', '!', ' '/)) ! { dg-error "rank of the element in the derived type constructor" }end subroutine foo
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?