代码搜索:Nested

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

代码结果 7,462
www.eeworm.com/read/240162/4580194

c nested2.c

template class CO { class CI1 { class CI2; }; }; template class CO::CI1::CI2 {};
www.eeworm.com/read/240162/4580410

c nested3.c

// { dg-do assemble } // Origin: Chip Salzenberg class Foo { public: class Bar; }; class Foo::Bar { public: Bar() {} };
www.eeworm.com/read/240162/4580581

c nested4.c

// { dg-do assemble } // // Copyright (C) 2000 Free Software Foundation, Inc. // Contributed by Nathan Sidwell 10 Aug 2000 // bug 372 We ICE'd on the out-of-class definiti
www.eeworm.com/read/240162/4580643

c nested1.c

// { dg-do assemble } struct C { struct D { }; }; struct E { C& c; void g(); }; void E::g() { c.D().f(); // { dg-error "" } no matching function }
www.eeworm.com/read/240162/4580821

c nested2.c

// { dg-do assemble } // by Bert Bril struct M1 { struct I {}; }; struct M2 { struct I {}; struct J : virtual public
www.eeworm.com/read/240162/4580879

c nested1.c

// { dg-do assemble } struct A { struct B { typedef long T; int i; }; }; struct C { struct B { typedef float T; int i; }; }; C::B::T a;
www.eeworm.com/read/240162/4581332

c nested1.c

// { dg-do assemble } template struct X { T1 a; struct Y { T2 x; Y (T2 _x) { x=_x; } }; }; template struct X { T1 a; struct Y { i
www.eeworm.com/read/240162/4581580

c nested2.c

// { dg-do assemble } // Origin: Mathias Doreille template struct a { struct b { T operator()(); }; }; template T a::b::operator()() { retu
www.eeworm.com/read/240162/4582923

c nested7.c

// { dg-do assemble } // Testcase for defining nested types separately. class remote { class remote_file; }; class remote::remote_file { public: ~remote_file(); }; remote::remote_file::~remote
www.eeworm.com/read/240162/4582962

c nested8.c

// { dg-do assemble } struct A { }; struct B: public A { struct C { friend struct B; // { dg-bogus "" } base clause w/o members }; };