代码搜索:Nested
找到约 7,462 项符合「Nested」的源代码
代码结果 7,462
www.eeworm.com/read/240162/4579041
c nested1.c
// Build don't link:
//
// Copyright (C) 2003 Free Software Foundation, Inc.
// Contributed by Raymond .
//
// PR c++/47 The parser failed to resolve 'B' in the return t
www.eeworm.com/read/240162/4579940
c nested3.c
template
class A {
template
class SubA {
int _k;
};
T1 _t1;
T2 _t2; // { dg-error "instantiated" }
};
template
class B { // { dg-error "" }
cl
www.eeworm.com/read/240162/4580049
c nested4.c
template struct A {
template struct B { typedef A X; };
};
template void f() {
typedef A::B::X X;
}
template void f ();
www.eeworm.com/read/240162/4580079
c nested1.c
/* PR c++/4633 */
/* { dg-do compile } */
// The 'class X' inside the template used to escape (somehow),
// so that the typedef claimed that it was redefining X.
template struct S ;
te