代码搜索:declared

找到约 3,220 项符合「declared」的源代码

代码结果 3,220
www.eeworm.com/read/470693/1458382

c friend34.c

// Build don't link: // excess errors test // This testcase won't fail if class ::foo is forward-declared in the // global namespace, nor if class bar is not a template class. template
www.eeworm.com/read/470693/1458519

c template12.c

// Build don't link: // Templates can be defined outside of the namespace if the have been declared // inside namespace bar { template T const foo(T const &); template const int f
www.eeworm.com/read/470693/1459521

c 900127_02.c

// g++ 1.36.1 bug 900127_02 // g++ (mostly) keeps separate name spaces for the declarations of data // objects and functions. // This means that a single name may be declared as both a data object a
www.eeworm.com/read/470693/1459571

c 891229_02.c

// g++ 1.36.1 bug 891229_02 // g++ limits the scope of names which are declared as typedef names within // another type to that other type. // This conflicts with the (global) scope given to such na
www.eeworm.com/read/247171/4486762

vb localvariablesb.vb

Option Strict Off ' Testing implicitly declared local varable in funtion Imports System Module LocalVariablesB Function f1(ByVal a As Integer, ByVal b As Integer) As Integer f1 = a + b
www.eeworm.com/read/240162/4582307

c err-msg12.c

// { dg-do assemble } // GROUPS passed error-messages class foo { public: friend mutable int x ();// { dg-error "" } non-object member `x' cannot be declared `mutable' };
www.eeworm.com/read/233522/4667720

hhh vcl_cwchar.hhh

@mbstate_t @wint_t // NB: size_t is declared in , not @btowc @fgetwc @fgetws @fputwc @fputws @fwide @fwprintf @fwscanf @getwc @getwchar @mbrlen @mbrtowc @putwc @putwc
www.eeworm.com/read/233448/4671246

c builtin5.c

// Verify that builtin is used when declared in namespace std // { dg-do compile } // { dg-options "-Wall" } namespace std { extern "C" int printf(const char*,...); } void foo() { std::printf("
www.eeworm.com/read/233448/4675123

c err-msg12.c

// { dg-do assemble } // GROUPS passed error-messages class foo { public: friend mutable int x ();// { dg-error "" } non-object member `x' cannot be declared `mutable' };
www.eeworm.com/read/233448/4678778

f90 module_interface_2.f90

! Test generic interfaces declared in modules. ! We used to get the name mangling wrong for these. module module_interface_2 interface foo subroutine myfoo (i) integer i end subroutine