summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/namelist_34.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/namelist_34.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/namelist_34.f9030
1 files changed, 30 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/namelist_34.f90 b/gcc/testsuite/gfortran.dg/namelist_34.f90
new file mode 100644
index 000000000..f7c5e1cf6
--- /dev/null
+++ b/gcc/testsuite/gfortran.dg/namelist_34.f90
@@ -0,0 +1,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" } }