aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/binding_label_tests_14.f03
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.9/gcc/testsuite/gfortran.dg/binding_label_tests_14.f03')
-rw-r--r--gcc-4.9/gcc/testsuite/gfortran.dg/binding_label_tests_14.f0312
1 files changed, 12 insertions, 0 deletions
diff --git a/gcc-4.9/gcc/testsuite/gfortran.dg/binding_label_tests_14.f03 b/gcc-4.9/gcc/testsuite/gfortran.dg/binding_label_tests_14.f03
new file mode 100644
index 000000000..041237bbe
--- /dev/null
+++ b/gcc-4.9/gcc/testsuite/gfortran.dg/binding_label_tests_14.f03
@@ -0,0 +1,12 @@
+! { dg-do run }
+subroutine display() bind(c)
+ implicit none
+end subroutine display
+
+program main
+ implicit none
+ interface
+ subroutine display() bind(c)
+ end subroutine display
+ end interface
+end program main