URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [namelist_34.f90] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do compile }
!
! PR fortran/32905 - accepts types with ultimate POINTER components
!
MODULE types
type :: tp3
real :: x
integer, pointer :: i
end type
type :: tp2
type(tp3) :: t
end type
type :: tp1
integer :: i
type(tp2) :: t
end type
END MODULE
MODULE nml
USE types
type(tp1) :: t1
type(tp3) :: t3
namelist /a/ t1 ! { dg-error "has ALLOCATABLE or POINTER components and thus requires a defined input/output" }
namelist /b/ t3 ! { dg-error "has ALLOCATABLE or POINTER components and thus requires a defined input/output" }
END MODULE
! { dg-final { cleanup-modules "types nml" } }
Go to most recent revision | Compare with Previous | Blame | View Log