3fa62efdbb
As Fortran 2018 C1520, if proc-language-binding-spec with NAME= is specified, then proc-decl-list shall contain exactly one proc-decl, which shall neither have the POINTER attribute nor be a dummy procedure. Add this check. Reviewed By: klausler Differential Revision: https://reviews.llvm.org/D127725
26 lines
545 B
Fortran
26 lines
545 B
Fortran
! RUN: %python %S/test_modfile.py %s %flang_fc1
|
|
module m
|
|
character(2), parameter :: prefix = 'c_'
|
|
integer, bind(c, name='c_a') :: a
|
|
procedure(sub), bind(c, name=prefix//'b') :: b
|
|
type, bind(c) :: t
|
|
real :: c
|
|
end type
|
|
contains
|
|
subroutine sub() bind(c, name='sub')
|
|
end
|
|
end
|
|
|
|
!Expect: m.mod
|
|
!module m
|
|
! character(2_4,1),parameter::prefix="c_"
|
|
! integer(4),bind(c, name="c_a")::a
|
|
! procedure(sub),bind(c, name="c_b")::b
|
|
! type,bind(c)::t
|
|
! real(4)::c
|
|
! end type
|
|
!contains
|
|
! subroutine sub() bind(c, name="sub")
|
|
! end
|
|
!end
|