代码搜索:Nested
找到约 7,462 项符合「Nested」的源代码
代码结果 7,462
www.eeworm.com/read/240162/4583216
c scoping4.c
// { dg-do assemble }
// PRMS Id: 4375
// Bug: g++ fails to keep track of nested typedefs properly.
class A {
public:
typedef char * Ptr;
Ptr s;
Ptr get_string();
A(Ptr string); // { s = str
www.eeworm.com/read/240162/4588220
c nestfunc-3.c
extern long foo (long, long, long (*) (long, long));
extern long use (long (*) (long, long), long, long);
int
main (void)
{
#ifndef NO_TRAMPOLINES
long sum = 0;
long i;
long nested_0 (long a,
www.eeworm.com/read/233448/4672410
c dr108.c
// { dg-do compile }
// Origin: Giovanni Bajo
// DR108: Are classes nested in templates dependent?
template struct S {
struct I1 {
typedef int X;
www.eeworm.com/read/233448/4672763
c crash7.c
// { dg-do compile }
// Origin: Volker Reichelt
// PR c++/10108: ICE in tsubst_decl for error due to non-existence
// nested type.
template struct A
{
www.eeworm.com/read/233448/4675659
c 900107_01.c
// { dg-do run }
// g++ 1.36.1 bug 900107_01
// Unlike GCC and Cfront 2.0, the g++ 1.36.1 compiler gives struct, union,
// and class declarations which are nested within blocks file scope.
// Cfron
www.eeworm.com/read/233448/4676035
c scoping4.c
// { dg-do assemble }
// PRMS Id: 4375
// Bug: g++ fails to keep track of nested typedefs properly.
class A {
public:
typedef char * Ptr;
Ptr s;
Ptr get_string();
A(Ptr string); // { s = str
www.eeworm.com/read/233448/4682146
c nestfunc-3.c
extern long foo (long, long, long (*) (long, long));
extern long use (long (*) (long, long), long, long);
int
main (void)
{
#ifndef NO_TRAMPOLINES
long sum = 0;
long i;
long nested_0 (long a,
www.eeworm.com/read/233448/4683087
c 20020309-1.c
/* APPLE LOCAL testsuite nested functions */
/* { dg-options "-fnested-functions" } */
int
sub1 (char *p, int i)
{
char j = p[i];
{
void
sub2 ()
{
i = 2;
p = p + 2;
}
}
}
www.eeworm.com/read/233448/4684437
c pr18596-1.c
/* { dg-do compile } */
/* APPLE LOCAL testsuite nested functions */
/* { dg-options "-fno-unit-at-a-time -fnested-functions" } */
int f(int i)
{
static int g(); /* { dg-error "invalid storage clas
www.eeworm.com/read/233448/4684863
c trampoline-1.c
/* PR target/12865 */
/* Origin: Waldek Hebisch */
/* { dg-do run } */
/* APPLE LOCAL testsuite nested functions */
/* { dg-options "-O2 -fnested-functions" } */
/* APPLE L