代码搜索:modules
找到约 10,000 项符合「modules」的源代码
代码结果 10,000
www.eeworm.com/read/162614/5526127
f90 nested_modules_5.f90
! { dg-do compile }
!
! Test for supplementary fix to PR24409 - the name clash between the module
! variable and the interface formal argument would cause an ICE.
!
! Contributed by Paul Thomas
www.eeworm.com/read/162614/5526153
f90 nested_modules_4.f90
! { dg-do compile }
!
! Test for the fix to PR24409 - the name clash between the module
! name and the interface formal argument would cause an ICE.
!
! Contributed by Paul Thomas
www.eeworm.com/read/162614/5526164
f90 nested_modules_1.f90
! { dg-do run }
!
! This tests that common blocks function with multiply nested modules.
! Contributed by Paul Thomas
!
module mod0
complex(kind=8) FOO, KANGA
www.eeworm.com/read/162614/5526168
f90 nested_modules_2.f90
! { dg do-run }
! This tests the patch for PR16861.
!
! Contributed by Paul Thomas
!
module foo
INTEGER :: i
end module foo
module bar
contains
subroutine sub1 (j)
use foo
int
www.eeworm.com/read/162614/5526339
f90 nested_modules_3.f90
! { dg-do run }
!
! This tests the improved version of the patch for PR16861. Testing
! after committing the first version, revealed that this test did
! not work but was not regtested for, either.
!