From 56828a291c4f1f6fd4f030a1ae198dfcb51cd7af Mon Sep 17 00:00:00 2001 From: Tobias Burnus Date: Mon, 28 Nov 2011 15:47:39 +0100 Subject: [PATCH] Really commit the test case: 2011-11-28 Tobias Burnus PR fortran/51308 * gfortran.dg/iso_c_binding_compiler_4.f90: New. From-SVN: r181779 --- .../gfortran.dg/iso_c_binding_compiler_4.f90 | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 gcc/testsuite/gfortran.dg/iso_c_binding_compiler_4.f90 diff --git a/gcc/testsuite/gfortran.dg/iso_c_binding_compiler_4.f90 b/gcc/testsuite/gfortran.dg/iso_c_binding_compiler_4.f90 new file mode 100644 index 00000000000..8a87fe5f50c --- /dev/null +++ b/gcc/testsuite/gfortran.dg/iso_c_binding_compiler_4.f90 @@ -0,0 +1,18 @@ +! { dg-do compile } +! +! PR fortran/51308 +! +! Contributed by Matthias Moeller +! + +module mymod + use iso_c_binding + implicit none + + private + public :: c_ptr + public :: c_null_ptr + +end module mymod + +! { dg-final { cleanup-modules "mymod" } }