代码搜索:implicit
找到约 5,250 项符合「implicit」的源代码
代码结果 5,250
www.eeworm.com/read/233448/4678795
f90 partparm.f90
! Program to test
subroutine test (p)
integer, dimension (3) :: p
if (any (p .ne. (/ 2, 4, 6/))) call abort
end subroutine
program partparm
implicit none
integer, dimension (2, 3) :: a
www.eeworm.com/read/233448/4678816
f90 forall.f90
! Program to test the FORALL construct
program testforall
implicit none
integer, dimension (3, 3) :: a
integer, dimension (3) :: b
integer i
a = reshape ((/1, 2, 3, 4, 5, 6, 7, 8, 9/),
www.eeworm.com/read/233448/4681600
f90 boz_3.f90
! { dg-do run }
! Test that the BOZ constant on the RHS, which are of different KIND than
! the LHS, are correctly converted.
!
program boz
implicit none
integer(1), parameter :: b1 = b'000000
www.eeworm.com/read/233448/4681648
f90 generic_3.f90
! { dg-do compile }
! Testcase from PR 17713
module fit_functions
implicit none
contains
subroutine gauss( x, a, y, dy, ma )
double precision, intent(in) :: x
double precision, intent(
www.eeworm.com/read/233448/4681709
f90 pr16935.f90
! { dg-do run }
! pr16935
! segfault at run time on open statement
program bug2
implicit none
open( 1 , file = "str_500.txt", position = "REWIND" )
end
www.eeworm.com/read/229812/4740727
upd02
#
# wmake regression tests
#
#
# 12-Feb-90 D.J.Gaudet Initial Implementation
#
#
# double colon target w/o implicit rule
#
.extensions:
.extensions: .cc .bb .aa
.bb.cc:
www.eeworm.com/read/216502/4891462
h 1.incl.h
#define maxlsw 10 /* max number of switches and labels per statement */
#define implicit 0L /* "label" of following line so all flow can be treated as jump to label */
struct lablist {long labelt;
www.eeworm.com/read/190666/5172564
c instantiate3.c
// Test that 'inline template' instantiates the vtable.
// { dg-do compile }
// { dg-options "-O -fno-implicit-templates" }
template struct A {
virtual void f () { }
};
inline template st
www.eeworm.com/read/190666/5173567
c typename7.c
// Test for implicit typename
// Build don't link:
// Special g++ Options:
template
struct A {
protected:
typedef struct B { } B;
};
template
struct C { };
template
www.eeworm.com/read/190666/5174964
c addrfunc2.c
// Test for implicit & on methods.
// Contributed by Jason Merrill .
// Special g++ Options: -fms-extensions
struct A {
void f (int = 0) { }
};
int
main ()
{
void (A::*p)(int)