代码搜索:implicit
找到约 5,250 项符合「implicit」的源代码
代码结果 5,250
www.eeworm.com/read/240162/4582781
c 900211_04.c
// { dg-do assemble }
// g++ 1.36.1 bug 900211_04
// g++ fails to flag as errors attempts to compare pointer values against
// (nonzero) integer values;
// Since implicit conversions of pointer to
www.eeworm.com/read/240162/4582915
c template36.c
// { dg-do run }
// Testcase for implicit 'typename' and resolution of 'typename's in the
// current scope.
class base1 {
public:
int bar() const
{ return 1; }
};
class base2 {
public:
www.eeworm.com/read/233448/4671305
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/233448/4673786
c typename7.c
// { dg-do assemble }
// { dg-options "" }
// Test for implicit typename
template
struct A {
protected:
typedef struct B { } B;
};
template
struct C { };
template
s
www.eeworm.com/read/233448/4675599
c 900211_04.c
// { dg-do assemble }
// g++ 1.36.1 bug 900211_04
// g++ fails to flag as errors attempts to compare pointer values against
// (nonzero) integer values;
// Since implicit conversions of pointer to
www.eeworm.com/read/233448/4675734
c template36.c
// { dg-do run }
// Testcase for implicit 'typename' and resolution of 'typename's in the
// current scope.
class base1 {
public:
int bar() const
{ return 1; }
};
class base2 {
public:
www.eeworm.com/read/233448/4678710
f90 forall_3.f90
! PR fortran/15080
! Really test forall with temporary
program evil_forall
implicit none
type t
logical valid
integer :: s
integer, dimension(:), pointer :: p
end type
type (t), di
www.eeworm.com/read/233448/4678713
f90 intrinsic_mod_ulo.f90
! Program to test MOD and MODULO intrinsics
subroutine integertest (ops, res)
implicit none
integer, dimension(2) :: ops
integer, dimension(2) :: res
if ((mod(ops(1), ops(2)) .ne. res(1))
www.eeworm.com/read/233448/4678714
f90 intrinsic_count.f90
! Program to test the COUNT intrinsic
program intrinsic_count
implicit none
logical(kind=4), dimension (3, 5) :: a
integer(kind=4), dimension (5) :: b
integer i
character(len=10) line
www.eeworm.com/read/233448/4678722
f90 mainsub.f90
! Program to test compilation of subroutines following the main program
program mainsub
implicit none
integer i
external test
i = 0
call test (i)
if (i .ne. 42) call abort
end progr