forked from OSchip/llvm-project
37 lines
822 B
Fortran
37 lines
822 B
Fortran
module m
|
|
character(2), parameter :: prefix = 'c_'
|
|
integer, bind(c, name='c_a') :: a
|
|
procedure(sub), bind(c, name=prefix//'b'), pointer :: b
|
|
type, bind(c) :: t
|
|
real :: c
|
|
end type
|
|
real :: d
|
|
external :: d
|
|
bind(c, name='dd') :: d
|
|
real :: e
|
|
bind(c, name='ee') :: e
|
|
external :: e
|
|
bind(c, name='ff') :: f
|
|
real :: f
|
|
external :: f
|
|
contains
|
|
subroutine sub() bind(c, name='sub')
|
|
end
|
|
end
|
|
|
|
!Expect: m.mod
|
|
!module m
|
|
! character(2_4,1),parameter::prefix=1_"c_"
|
|
! integer(4),bind(c, name=1_"c_a")::a
|
|
! procedure(sub),bind(c, name=1_"c_b"),pointer::b
|
|
! type,bind(c)::t
|
|
! real(4)::c
|
|
! end type
|
|
! procedure(real(4)),bind(c, name=1_"dd")::d
|
|
! procedure(real(4)),bind(c, name=1_"ee")::e
|
|
! procedure(real(4)),bind(c, name=1_"ff")::f
|
|
!contains
|
|
! subroutine sub() bind(c, name=1_"sub")
|
|
! end
|
|
!end
|