aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/binding_label_tests_32.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/binding_label_tests_32.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/binding_label_tests_32.f9035
1 files changed, 35 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/binding_label_tests_32.f90 b/gcc/testsuite/gfortran.dg/binding_label_tests_32.f90
new file mode 100644
index 00000000000..f18df66a2cc
--- /dev/null
+++ b/gcc/testsuite/gfortran.dg/binding_label_tests_32.f90
@@ -0,0 +1,35 @@
+! { dg-do run }
+! PR 77746 - this used to crash during execution.
+! Original test case by Vladimir Fuka.
+module first
+ private
+ public execute
+
+ interface execute
+ module procedure random_name
+ end interface
+
+contains
+
+ subroutine random_name()
+ end subroutine
+end module
+
+module test
+ use first
+
+ implicit none
+
+contains
+
+ subroutine p_execute(i) bind(C, name="random_name")
+ integer :: i
+
+ call execute()
+ end subroutine
+
+end module
+
+ use test
+ call p_execute(1)
+end