view flang/test/Semantics/modfile36.f90 @ 181:df311c476dd5

CreateIdentifierInfo in ParseCbC (not yet worked)
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sun, 31 May 2020 12:30:11 +0900
parents 0572611fdcc8
children 2e18cbf3894f
line wrap: on
line source

! RUN: %S/test_modfile.sh %s %t %f18

! Check modfile that contains import of use-assocation of another use-association.

module m1
  interface
     subroutine s(x)
       use, intrinsic :: iso_c_binding, only: c_ptr
       type(c_ptr) :: x
     end subroutine
  end interface
end module
!Expect: m1.mod
!module m1
! interface
!  subroutine s(x)
!   use iso_c_binding, only: c_ptr
!   type(c_ptr) :: x
!  end
! end interface
!end

module m2
  use, intrinsic :: iso_c_binding, only: c_ptr
  interface
     subroutine s(x)
       import :: c_ptr
       type(c_ptr) :: x
     end subroutine
  end interface
end module
!Expect: m2.mod
!module m2
! use iso_c_binding,only:c_ptr
! interface
!  subroutine s(x)
!   import::c_ptr
!   type(c_ptr)::x
!  end
! end interface
!end