blob: f7c5e1cf6f150b99a936f4de15ac5e0ebd0ba4e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
! { 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" } }
|