代码搜索:implicit
找到约 5,250 项符合「implicit」的源代码
代码结果 5,250
www.eeworm.com/read/240162/4582778
c 900209_01.c
// { dg-do assemble }
// g++ 1.36.1 bug 900209_01
// g++ implicitly casts values whose types are "void*" to other pointer
// types (just as the language rules for C permit). Such implicit
// conver
www.eeworm.com/read/240162/4582840
c 900205_04.c
// { dg-do assemble }
// 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 cl
www.eeworm.com/read/240162/4583453
c typedef2.c
// { dg-do assemble }
// Testcase from Alexander Zvyagin
// Check implicit conversion from string constants into typedefs
typedef char CHAR;
void f2(CHAR *s="");
www.eeworm.com/read/240162/4592640
cc 2.cc
// { dg-options "-fno-implicit-templates" }
// Copyright (C) 2001, 2002, 2004 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you
www.eeworm.com/read/233448/4675176
c addrfunc2.c
// { dg-do run }
// { dg-options "-fms-extensions" }
// Test for implicit & on methods.
// Contributed by Jason Merrill .
struct A {
void f (int = 0) { }
};
int
main ()
{
void
www.eeworm.com/read/233448/4675596
c 900209_01.c
// { dg-do assemble }
// g++ 1.36.1 bug 900209_01
// g++ implicitly casts values whose types are "void*" to other pointer
// types (just as the language rules for C permit). Such implicit
// conver
www.eeworm.com/read/233448/4675658
c 900205_04.c
// { dg-do assemble }
// 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 cl
www.eeworm.com/read/233448/4676271
c typedef2.c
// { dg-do assemble }
// Testcase from Alexander Zvyagin
// Check implicit conversion from string constants into typedefs
typedef char CHAR;
void f2(CHAR *s="");
www.eeworm.com/read/233448/4678804
f90 elemental.f90
! Program to test elemental functions.
program test_elemental
implicit none
integer(kind = 4), dimension (2, 4) :: a
integer(kind = 4), dimension (2, 4) :: b
integer(kind = 8), dimension(2
www.eeworm.com/read/233448/4678830
f90 random_init.f90
! pr 15149
! verify the random number generator is functional
program test_random
implicit none
real :: r(5) = 0.0
call random_number(r)
if (all (r .eq. 0)) call abort