代码搜索:implicit

找到约 5,250 项符合「implicit」的源代码

代码结果 5,250
www.eeworm.com/read/162614/5526268

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/162614/5526340

f90 hollerith2.f90

! { dg-do run } ! Program to test Hollerith constant. Program test implicit none integer i,j real r, x, y parameter (i = 4h1234) parameter (r =
www.eeworm.com/read/162614/5526404

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/162614/5526405

f90 char_reshape_1.f90

! Test reshape for character arrays. ! { dg-do run } program main implicit none integer, parameter :: n = 20, slen = 9 character (len = slen), dimension (n) :: a, pad integer, dimension (3) ::
www.eeworm.com/read/162614/5526489

f90 array_constructor_1.f90

! { dg-do run } ! Check that [...] style array constructors work program bracket_array_constructor implicit none integer :: a(4), i a = [ 1, 2, 3, 4 ] ! { dg-warning "array constructor"
www.eeworm.com/read/162614/5526523

f90 array_constructor_6.f90

! PR 12840. Make sure that array constructors can be used to determine ! the bounds of a scalarization loop. ! { dg-do run } program main implicit none call build (11) contains subroutine build
www.eeworm.com/read/340665/3272836

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/340665/3274224

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/340665/3275620

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)
www.eeworm.com/read/340665/3276103

c 900205_04.c

// g++ 1.36.1 bug 900205_04 // g++ allows a class for which an implicit default X::X() constructor must // be created (implicitly by the compiler) to be derived from another class // which does not h