代码搜索:Nested

找到约 7,462 项符合「Nested」的源代码

代码结果 7,462
www.eeworm.com/read/470720/1445263

c access8.c

// Build don't link: // Copyright (C) 2000 Free Software Foundation, Inc. // Contributed by Nathan Sidwell 10 Feb 2000 // Test that access to static members from a nested class of th
www.eeworm.com/read/470720/1447657

c 900107_01.c

// 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. // Cfront 2.0 passes this
www.eeworm.com/read/470720/1447686

c template33.c

// Test nested enums in templates. // Build don't link: template class A { public: enum muni {X, Y}; muni e() { return X; }; muni f(); }; template typename A::muni A
www.eeworm.com/read/470720/1447759

c anon3.c

// Bug: g++ dies. // Build don't link: class cl { public: cl(); void set(void *, char *, int); private: union { float vf; struct ff { // ERROR - nested class in anonymous union vo
www.eeworm.com/read/470720/1447806

c 2371.c

# 1 "SetLS.cc" // GROUPS passed templates nested-classes // Special g++ Options: // // The SetLS template test // // Wendell Baker, Berkeley CAD Group, 1993 (wbaker@ic.Berkeley.EDU) // #pragma imple
www.eeworm.com/read/470720/1448012

c scoping13.c

// Build don't link: struct A { typedef int foo; }; struct B: public A { typedef int bar; struct C { void g (B::bar); // gets bogus error - nested type failure void f (B::foo); }; };
www.eeworm.com/read/470720/1452147

c attr-nest.c

/* { dg-do compile } */ #define ATTR_PRINTF __attribute__ ((format (printf, 1, 2))) #define ATTR_USED __attribute__ ((used)) void bar (int, ...); /* gcc would segfault on the nested attribute. */
www.eeworm.com/read/470693/1457209

c access8.c

// Build don't link: // Copyright (C) 2000 Free Software Foundation, Inc. // Contributed by Nathan Sidwell 10 Feb 2000 // Test that access to static members from a nested class of th
www.eeworm.com/read/470693/1459603

c 900107_01.c

// 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. // Cfront 2.0 passes this
www.eeworm.com/read/470693/1459632

c template33.c

// Test nested enums in templates. // Build don't link: template class A { public: enum muni {X, Y}; muni e() { return X; }; muni f(); }; template typename A::muni A