aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/gfortran.dg/proc_ptr_comp_13.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8/gcc/testsuite/gfortran.dg/proc_ptr_comp_13.f90')
-rw-r--r--gcc-4.8/gcc/testsuite/gfortran.dg/proc_ptr_comp_13.f9037
1 files changed, 37 insertions, 0 deletions
diff --git a/gcc-4.8/gcc/testsuite/gfortran.dg/proc_ptr_comp_13.f90 b/gcc-4.8/gcc/testsuite/gfortran.dg/proc_ptr_comp_13.f90
new file mode 100644
index 000000000..afc8f55b5
--- /dev/null
+++ b/gcc-4.8/gcc/testsuite/gfortran.dg/proc_ptr_comp_13.f90
@@ -0,0 +1,37 @@
+! { dg-do run }
+!
+! PR 40882: [F03] infinite recursion in gfc_get_derived_type with PPC returning derived type.
+! At the same time, check that a formal argument does not cause infinite recursion (PR 40870).
+!
+! Contributed by Janus Weil <janus@gcc.gnu.org>
+
+implicit none
+
+type :: t
+ integer :: data
+ procedure(foo), pointer, nopass :: ppc
+ procedure(type(t)), pointer, nopass :: ppc2
+end type
+
+type(t) :: o,o2
+
+o%data = 1
+o%ppc => foo
+
+o2 = o%ppc(o)
+
+if (o%data /= 1) call abort()
+if (o2%data /= 5) call abort()
+if (.not. associated(o%ppc)) call abort()
+if (associated(o2%ppc)) call abort()
+
+contains
+
+ function foo(arg)
+ type(t) :: foo, arg
+ foo%data = arg%data * 5
+ foo%ppc => NULL()
+ end function
+
+end
+