From: Tobias Burnus Date: Mon, 28 Nov 2011 14:47:39 +0000 (+0100) Subject: Really commit the test case: X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=56828a291c4f1f6fd4f030a1ae198dfcb51cd7af;p=gcc.git 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 --- 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" } }