代码搜索:implicit
找到约 5,250 项符合「implicit」的源代码
代码结果 5,250
www.eeworm.com/read/168845/5429664
jam xsltproc.jam
# Copyright (C) 2003 Doug Gregor. Permission to copy, use, modify,
# sell and distribute this software is granted provided this
# copyright notice appears in all copies. This software is provided
www.eeworm.com/read/162614/5517608
c dllimport5.c
// { dg-do compile { target i?86-*-cygwin* i?86-*-mingw*} }
// Report error if static symbol definition has dllimport attribute.
__attribute__((dllimport))
int impvar; // OK, implicit "extern"
www.eeworm.com/read/162614/5519808
c static5.c
// { dg-do assemble }
// Origin: Mark Mitchell
struct S
{
~S();
};
inline void f()
{
static S s;
atexit (0); // { dg-error "" } implicit declaration
}
www.eeworm.com/read/162614/5521994
c explicit2.c
// { dg-do assemble }
class string {
public:
string(const char*) { }
explicit string(int size) { }
};
void foo(string) { }
string bar() {
foo("hello"); // ok
foo(string(2)); // ok
foo
www.eeworm.com/read/162614/5522510
c report.c
// { dg-do assemble }
// { dg-options "-Wreturn-type" }
// GROUPS passed error-reporting
// DR 295 allows qualification via typedef
template
class badoo
{
};
template
cla
www.eeworm.com/read/162614/5523145
f90 nestcons.f90
! Program to test array expressions in array constructors.
program nestcons
implicit none
integer, parameter :: w1(3)= (/ 5, 6, 7/)
integer, dimension(6) :: w2
w2 = (/ 1, 2, w1(3:1:-1)
www.eeworm.com/read/162614/5523216
f90 strret.f90
! Program to test caracter string return values
function test ()
implicit none
character(len=10) :: test
test = "World"
end function
function test2 () result (r)
implicit none
characte
www.eeworm.com/read/162614/5523223
f90 procarg.f90
! Pogram to test
subroutine myp (a)
implicit none
integer a
if (a .ne. 42) call abort
end subroutine
subroutine test2 (p)
implicit none
external p
call p(42)
end subroutine
subro
www.eeworm.com/read/162614/5523352
f90 named_args_2.f90
! this is the reduced testcase from pr13372
! we wrongly add a symbol "P" to the module
! Currently (2004/06/09) a workaround is in place
! PR 15481 tracks any steps towards a real fix.
module typeSiz
www.eeworm.com/read/162614/5523373
f90 enum_1.f90
! Program to test parsing of ENUM in different program units
program main
implicit none
interface
subroutine sub1
end subroutine sub1
end interface
integer :: i = 55
enum , bind (