summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/iso_c_binding_compiler_4.f90
blob: 8a87fe5f50c8b0c3c5d7994f15d164249e1379dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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" } }